Initial commit
This commit is contained in:
22
sources/org/greenrobot/greendao/DaoLog.java
Normal file
22
sources/org/greenrobot/greendao/DaoLog.java
Normal file
@@ -0,0 +1,22 @@
|
||||
package org.greenrobot.greendao;
|
||||
|
||||
import android.util.Log;
|
||||
|
||||
/* loaded from: classes2.dex */
|
||||
public class DaoLog {
|
||||
public static int a(String str) {
|
||||
return Log.d("greenDAO", str);
|
||||
}
|
||||
|
||||
public static int b(String str) {
|
||||
return Log.w("greenDAO", str);
|
||||
}
|
||||
|
||||
public static int a(String str, Throwable th) {
|
||||
return Log.e("greenDAO", str, th);
|
||||
}
|
||||
|
||||
public static int b(String str, Throwable th) {
|
||||
return Log.w("greenDAO", str, th);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user