Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix documentation of Timber.Tree.log() params #207

Open
wants to merge 1 commit into
base: trunk
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions timber/src/main/java/timber/log/Timber.java
Original file line number Diff line number Diff line change
Expand Up @@ -567,8 +567,8 @@ private String getStackTraceString(Throwable t) {
*
* @param priority Log level. See {@link Log} for constants.
* @param tag Explicit or inferred tag. May be {@code null}.
* @param message Formatted log message. May be {@code null}, but then {@code t} will not be.
* @param t Accompanying exceptions. May be {@code null}, but then {@code message} will not be.
* @param message Formatted log message. Never {@code null}. If {@code t} is provided, this includes the stack trace.
* @param t Accompanying exceptions. May be {@code null}.
*/
protected abstract void log(int priority, String tag, String message, Throwable t);
}
Expand Down