makcar/app/src/main/java/com/aros/apron/tools/LogUtil.java

17 lines
397 B
Java
Raw Normal View History

2026-01-30 11:47:32 +08:00
package com.aros.apron.tools;
import android.util.Log;
import com.aros.apron.xclog.XcFileLog;
public class LogUtil {
public static void log(String tag,String content){
Log.e(tag,content);
XcFileLog.getInstace().i(tag,content);
}
public static void logA(String tag,String content){
// Log.e(tag,content);
XcFileLog.getInstace().i(tag,content);
}
}