Skip to content

Commit

Permalink
Fix androidMain and jsAndWasmJsMain platformLogWriter implementation (#…
Browse files Browse the repository at this point in the history
…430)

* add messageStringFormatter in platformLogWriter androidMain implementation for LogcatWriter

* add messageStringFormatter in platformLogWriter jsAndWasmJsMain implementation for ConsoleWriter
  • Loading branch information
0xffrom authored Dec 16, 2024
1 parent 717501a commit 5bb6212
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

package co.touchlab.kermit

actual fun platformLogWriter(messageStringFormatter: MessageStringFormatter): LogWriter = LogcatWriter()
actual fun platformLogWriter(messageStringFormatter: MessageStringFormatter): LogWriter = LogcatWriter(messageStringFormatter)
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@

package co.touchlab.kermit

actual fun platformLogWriter(messageStringFormatter: MessageStringFormatter): LogWriter = ConsoleWriter()
actual fun platformLogWriter(messageStringFormatter: MessageStringFormatter): LogWriter = ConsoleWriter(messageStringFormatter)

0 comments on commit 5bb6212

Please sign in to comment.