23 lines
579 B
Java
23 lines
579 B
Java
package com.orhanobut.logger;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class AndroidLogAdapter implements LogAdapter {
|
|
private final FormatStrategy a;
|
|
private int b = 2;
|
|
|
|
public AndroidLogAdapter(FormatStrategy formatStrategy) {
|
|
Utils.a(formatStrategy);
|
|
this.a = formatStrategy;
|
|
}
|
|
|
|
@Override // com.orhanobut.logger.LogAdapter
|
|
public boolean a(int i, String str) {
|
|
return i >= this.b;
|
|
}
|
|
|
|
@Override // com.orhanobut.logger.LogAdapter
|
|
public void a(int i, String str, String str2) {
|
|
this.a.a(i, str, str2);
|
|
}
|
|
}
|