Skip to content

Instantly share code, notes, and snippets.

@Audhil
Created April 17, 2018 10:51
Show Gist options
  • Save Audhil/02aa18b56e2a5b68c3018585634ac717 to your computer and use it in GitHub Desktop.
Save Audhil/02aa18b56e2a5b68c3018585634ac717 to your computer and use it in GitHub Desktop.
log extn funcs
fun Any.showVLog(log: String) = Log.v(this::class.java.simpleName, log)
fun Any.showELog(log: String) = Log.e(this::class.java.simpleName, log)
fun Any.showDLog(log: String) = Log.d(this::class.java.simpleName, log)
fun Any.showILog(log: String) = Log.i(this::class.java.simpleName, log)
fun Any.showWLog(log: String) = Log.w(this::class.java.simpleName, log)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment