Skip to content

Commit

Permalink
- fix runtime crash grabbing logger from views (this will need a ref…
Browse files Browse the repository at this point in the history
…actor, we do not want views logging stuff) (#87)
  • Loading branch information
rodvar authored Nov 29, 2024
1 parent ba38759 commit 2c3bbe2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,7 @@ fun getLogger(anyObj: Any): Logger {
}

fun getLogger(tag: String): Logger {
return getLogger(tag)
}

fun getLogger(): Logger {
return doGetLogger(null)
return doGetLogger(tag)
}

private fun doGetLogger(tag: String?): Logger {
Expand Down

0 comments on commit 2c3bbe2

Please sign in to comment.