Skip to content

Commit

Permalink
make logging less noisy during dictation
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 committed Nov 12, 2024
1 parent c76445d commit 893a066
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ class SpeechRecognizerDictationService: DictationService, KoinComponent {
}

override fun onBeginningOfSpeech() {
Logging.i("Speech start detected")
//Logging.i("Speech start detected")
}

override fun onRmsChanged(rmsdB: Float) {
Expand All @@ -87,7 +87,7 @@ class SpeechRecognizerDictationService: DictationService, KoinComponent {
}

override fun onEndOfSpeech() {
Logging.i("Speech end detected")
//Logging.i("Speech end detected")
}

override fun onError(error: Int) {
Expand Down

0 comments on commit 893a066

Please sign in to comment.