what-the-bank/sources/com/google/android/gms/analytics/Logger.java

37 lines
696 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.android.gms.analytics;
@Deprecated
/* loaded from: classes.dex */
public interface Logger {
@Deprecated
/* loaded from: classes.dex */
public static class LogLevel {
public static final int ERROR = 3;
public static final int INFO = 1;
public static final int VERBOSE = 0;
public static final int WARNING = 2;
}
@Deprecated
void error(Exception exc);
@Deprecated
void error(String str);
@Deprecated
int getLogLevel();
@Deprecated
void info(String str);
@Deprecated
void setLogLevel(int i);
@Deprecated
void verbose(String str);
@Deprecated
void warn(String str);
}