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