jimu-decompiled/sources/com/orhanobut/logger/DiskLogAdapter.java
2025-05-13 19:24:51 +02:00

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;
}
}