aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/scopekit/decimation.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/scopekit/decimation.py b/src/scopekit/decimation.py
index d60ac3b..107054d 100644
--- a/src/scopekit/decimation.py
+++ b/src/scopekit/decimation.py
@@ -312,9 +312,6 @@ class DecimationManager:
adaptive_envelope_window = max(
1, step // 2
) # Half the step size for smoother envelope
- logger.debug(
- f"Calculated adaptive envelope window: {adaptive_envelope_window} samples (step={step})"
- )
# Ensure step is not zero, and calculate number of bins
if step == 0: # Should not happen with max(1, ...) but as a safeguard
@@ -500,7 +497,6 @@ class DecimationManager:
xlim_raw, max_points, use_envelope, data_id
) # Cache key doesn't need return_envelope_min_max
if cache_key in self._cache:
- logger.debug(f"Using cached decimation for key: {cache_key}")
return self._cache[cache_key]
# --- Strategy: Use pre-decimated envelope if in envelope mode and view is wide ---