Skip to content

Commit

Permalink
don't double log device logs
Browse files Browse the repository at this point in the history
  • Loading branch information
crc-32 committed Sep 20, 2024
1 parent 9062f4f commit c3fbb7f
Showing 1 changed file with 0 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,6 @@ private suspend fun getDeviceLogs(deviceLogController: DeviceLogController): Lis
return null
}
return flow.filterIsInstance<LogDump.LogLine>()
.onEach {
Timber.d("Log line: ${it.timestamp.get()} ${it.filename.get()}:${it.line.get()} ${it.level.get()} ${it.messageText.get()}")
}
.map {
"${it.timestamp.get()} ${it.filename.get()}:${it.line.get()} ${it.level.get()} ${it.messageText.get()}"
}.toList()
Expand Down

0 comments on commit c3fbb7f

Please sign in to comment.