Created
August 9, 2023 22:56
-
-
Save oguzhanaslann/0b0b15b42088c57cd1353f89ff63337b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| interface Logger { | |
| fun d(tag: String, msg: String) | |
| fun e(tag: String, msg: String, throwable: Throwable? = null) | |
| fun i(tag: String, msg: String) | |
| fun w(tag: String, msg: String) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment