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

16 lines
377 B
Java

package com.orhanobut.logger;
import android.util.Log;
/* loaded from: classes.dex */
public class LogcatLogStrategy implements LogStrategy {
@Override // com.orhanobut.logger.LogStrategy
public void a(int i, String str, String str2) {
Utils.a(str2);
if (str == null) {
str = "NO_TAG";
}
Log.println(i, str, str2);
}
}