Skip to content

Commit 711e134

Browse files
committed
Update WSPRProcessor.kt
1 parent 10cb035 commit 711e134

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

AudioCoder/src/main/java/org/operatorfoundation/audiocoder/WSPRProcessor.kt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ package org.operatorfoundation.audiocoder
33
import org.operatorfoundation.audiocoder.WSPRBandplan.getDefaultFrequency
44
import org.operatorfoundation.audiocoder.WSPRConstants.WSPR_REQUIRED_SAMPLE_RATE
55
import org.operatorfoundation.audiocoder.WSPRConstants.SYMBOLS_PER_MESSAGE
6+
import timber.log.Timber
67

78
/**
89
* High-level WSPR audio processing with buffering and multiple decode strategies.
@@ -215,13 +216,13 @@ class WSPRProcessor
215216

216217
messages?.let {
217218
allMessages.addAll(it.toList())
218-
// Timber.d("Decoded ${it.size} messages from ${window.description}")
219+
Timber.d("Decoded ${it.size} messages from ${window.description}")
219220
}
220221
}
221222
catch (exception: Exception)
222223
{
223224
// Log decode failure but continue with other windows
224-
// Timber.w(exception, "Failed to decode ${window.description}")
225+
Timber.w(exception, "Failed to decode ${window.description}")
225226
}
226227
}
227228

0 commit comments

Comments
 (0)