Fix issue where we were double-logging job info.

This commit is contained in:
Greyson Parrelli 2020-11-09 09:09:34 -05:00
parent 12ea88f409
commit 20ad166e0f

View file

@ -51,7 +51,7 @@ public abstract class BaseJob extends Job {
}
protected void log(@NonNull String tag, @NonNull String message) {
log(tag, "", JobLogger.format(this, message));
Log.i(tag, JobLogger.format(this, message));
}
protected void log(@NonNull String tag, @NonNull String extra, @NonNull String message) {