JakeWharton / timber

A logger with a small, extensible API which provides utility on top of Android's normal Log class.
https://jakewharton.github.io/timber/docs/5.x/
Apache License 2.0
10.46k stars 962 forks source link

Where are the priority codes? #478

Closed SharkFourSix closed 2 years ago

SharkFourSix commented 2 years ago
protected void log(int priority, @Nullable String tag, @NonNull String message, @Nullable Throwable throwable) {

What are the possible values for the priority parameter? I have looked everywhere and I have not found anything relevant. How would we know later on if the message is an error, warning, or info?

JakeWharton commented 2 years ago

They're available on Android's Log class: https://developer.android.com/reference/android/util/Log

JakeWharton commented 2 years ago

They're available on Android's Log class: https://developer.android.com/reference/android/util/Log

SharkFourSix commented 2 years ago

Pfffff :facepalm: . I thought it was Timber related codes.