37 lines
696 B
Java
37 lines
696 B
Java
|
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);
|
||
|
}
|