Skip to content

Instantly share code, notes, and snippets.

@Gizmodo
Created December 6, 2021 12:55
Show Gist options
  • Save Gizmodo/43c33d1494f718bc6ff4284ff7b346c2 to your computer and use it in GitHub Desktop.
Save Gizmodo/43c33d1494f718bc6ff4284ff7b346c2 to your computer and use it in GitHub Desktop.
class LineNumberDebugTree : Timber.DebugTree() {
override fun createStackElementTag(element: StackTraceElement): String? {
return "(${element.fileName}:${element.lineNumber})#${element.methodName}"
}
override fun log(priority: Int, tag: String?, message: String, t: Throwable?) {
super.log(priority, "MMTR_$tag", message, t)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment