Skip to content

Commit df791d4

Browse files
authored
Improve media event logging (#3684)
1 parent 9271ee8 commit df791d4

File tree

2 files changed

+5
-1
lines changed
  • modules/services
    • repositories/src/main/java/au/com/shiftyjelly/pocketcasts/repositories/playback
    • utils/src/main/java/au/com/shiftyjelly/pocketcasts/utils/log

2 files changed

+5
-1
lines changed

modules/services/repositories/src/main/java/au/com/shiftyjelly/pocketcasts/repositories/playback/MediaSessionManager.kt

+3
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,7 @@ class MediaSessionManager(
530530
val keyEvent = IntentCompat.getParcelableExtra(mediaButtonEvent, Intent.EXTRA_KEY_EVENT, KeyEvent::class.java) ?: return false
531531
logEvent(keyEvent.toString())
532532
if (keyEvent.action == KeyEvent.ACTION_DOWN) {
533+
LogBuffer.i(LogBuffer.TAG_PLAYBACK, "Media button Android event: ${keyEvent.action}")
533534
val inputEvent = when (keyEvent.keyCode) {
534535
/**
535536
* KEYCODE_MEDIA_PLAY_PAUSE - called when the player audio has focus
@@ -541,10 +542,12 @@ class MediaSessionManager(
541542
KeyEvent.KEYCODE_MEDIA_PREVIOUS -> MediaEvent.TripleTap
542543
else -> null
543544
}
545+
LogBuffer.i(LogBuffer.TAG_PLAYBACK, "Media button input event: ${keyEvent.action}")
544546

545547
if (inputEvent != null) {
546548
launch {
547549
val outputEvent = mediaEventQueue.consumeEvent(inputEvent)
550+
LogBuffer.i(LogBuffer.TAG_PLAYBACK, "Media button output event: ${keyEvent.action}")
548551
when (outputEvent) {
549552
MediaEvent.SingleTap -> handleMediaButtonSingleTap()
550553
MediaEvent.DoubleTap -> handleMediaButtonDoubleTap()

modules/services/utils/src/main/java/au/com/shiftyjelly/pocketcasts/utils/log/LogBuffer.kt

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import java.io.PrintWriter
1010
import java.io.StringWriter
1111
import java.text.SimpleDateFormat
1212
import java.util.Date
13+
import java.util.Locale
1314
import timber.log.Timber
1415
import timber.log.Timber.Forest.tag
1516

@@ -25,7 +26,7 @@ object LogBuffer {
2526
private const val LOG_FILE_NAME = "debug.log"
2627
private const val LOG_BACKUP_FILE_NAME = "debug.log.1"
2728

28-
private val LOG_FILE_DATE_FORMAT = SimpleDateFormat("dd/M HH:mm:ss")
29+
private val LOG_FILE_DATE_FORMAT = SimpleDateFormat("dd/M HH:mm:ss.SSS", Locale.US)
2930
private const val FILE_MAX_SIZE_BYTES = (200 * 1024).toLong()
3031

3132
private var logPath: String? = null

0 commit comments

Comments
 (0)