Skip to content

Commit

Permalink
Fix for issue 180 (#190)
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan authored Oct 31, 2021
1 parent 13f58ae commit 624df13
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package co.touchlab.kermit
class SystemWriter : LogWriter() {

override fun log(severity: Severity, message: String, tag: String, throwable: Throwable?) {
val str = "$severity: ($tag) $message\")"
val str = "$severity: ($tag) $message"
if (severity == Severity.Error) {
System.err.println(str)
} else {
Expand Down

0 comments on commit 624df13

Please sign in to comment.