Skip to content

Commit c93b595

Browse files
committed
don't double log, per-frame stats go to CSV, only
1 parent c6a92c4 commit c93b595

1 file changed

Lines changed: 0 additions & 11 deletions

File tree

gambaterm/audio.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -171,9 +171,6 @@ def _diag_record_skip(self, input_len: int, acc_len: int) -> None:
171171
self._diag_fill_min = min(self._diag_fill_min, fill)
172172
frame = self._frame_num
173173
self._frame_num += 1
174-
logger.debug(
175-
"skip frame=%d input=%d acc=%d fill=%.4f", frame, input_len, acc_len, fill
176-
)
177174
if self._csv_enabled:
178175
self._diag_frames.append(
179176
{
@@ -196,14 +193,6 @@ def _diag_record_process(
196193
self._diag_fill_min = min(self._diag_fill_min, fill)
197194
frame = self._frame_num
198195
self._frame_num += 1
199-
logger.debug(
200-
"process frame=%d input=%d acc=%d output=%d fill=%.4f",
201-
frame,
202-
input_len,
203-
acc_len,
204-
output_len,
205-
fill,
206-
)
207196
if self._csv_enabled:
208197
self._diag_frames.append(
209198
{

0 commit comments

Comments
 (0)