You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The documentation of the message param indicates that it may be null when t is not null:
@param message Formatted log message. May be {@code null}, but then {@code t} will not be.
However, the implementation of Timber.Tree.prepareLog() will always append the stack trace to the message when t is not null. Hence, message will never be null.
The text was updated successfully, but these errors were encountered:
The documentation of the
message
param indicates that it may be null whent
is not null:However, the implementation of
Timber.Tree.prepareLog()
will always append the stack trace to the message whent
is not null. Hence,message
will never be null.The text was updated successfully, but these errors were encountered: