android: fix running on Android 5

For some reason ART complains about these methods being overrides of package
private ones from Timber.
This commit is contained in:
Saúl Ibarra Corretgé 2019-09-12 16:17:39 +02:00 committed by Saúl Ibarra Corretgé
parent 6c4901a826
commit 3a885c893a
2 changed files with 4 additions and 4 deletions

View File

@ -37,13 +37,13 @@ public abstract class JitsiMeetBaseLogHandler extends Timber.Tree {
protected void log(int priority, @Nullable String tag, @NotNull String msg, @Nullable Throwable t) {
String errmsg = Log.getStackTraceString(t);
if (errmsg.isEmpty()) {
doLog(priority, getTag(), msg);
doLog(priority, getDefaultTag(), msg);
} else {
doLog(priority, getTag(), MessageFormat.format("{0}\n{1}", msg, errmsg));
doLog(priority, getDefaultTag(), MessageFormat.format("{0}\n{1}", msg, errmsg));
}
}
protected abstract void doLog(int priority, @NotNull String tag, @NotNull String msg);
protected abstract String getTag();
protected abstract String getDefaultTag();
}

View File

@ -33,7 +33,7 @@ public class JitsiMeetDefaultLogHandler extends JitsiMeetBaseLogHandler {
}
@Override
protected String getTag() {
protected String getDefaultTag() {
return TAG;
}
}