98 lines
2.6 KiB
Java
98 lines
2.6 KiB
Java
package com.google.android.gms.common.logging;
|
|
|
|
import android.util.Log;
|
|
import com.google.android.gms.common.internal.GmsLogger;
|
|
import java.util.Locale;
|
|
import kotlinx.serialization.json.internal.AbstractJsonLexerKt;
|
|
|
|
/* JADX INFO: compiled from: com.google.android.gms:play-services-basement@@18.3.0 */
|
|
/* JADX INFO: loaded from: classes2.dex */
|
|
public class Logger {
|
|
private final String zza;
|
|
private final String zzb;
|
|
private final GmsLogger zzc;
|
|
private final int zzd;
|
|
|
|
public Logger(String str, String... strArr) {
|
|
String string;
|
|
if (strArr.length == 0) {
|
|
string = "";
|
|
} else {
|
|
StringBuilder sb = new StringBuilder();
|
|
sb.append(AbstractJsonLexerKt.BEGIN_LIST);
|
|
for (String str2 : strArr) {
|
|
if (sb.length() > 1) {
|
|
sb.append(",");
|
|
}
|
|
sb.append(str2);
|
|
}
|
|
sb.append("] ");
|
|
string = sb.toString();
|
|
}
|
|
this.zzb = string;
|
|
this.zza = str;
|
|
this.zzc = new GmsLogger(str);
|
|
int i = 2;
|
|
while (i <= 7 && !Log.isLoggable(this.zza, i)) {
|
|
i++;
|
|
}
|
|
this.zzd = i;
|
|
}
|
|
|
|
public void d(String str, Object... objArr) {
|
|
if (isLoggable(3)) {
|
|
Log.d(this.zza, format(str, objArr));
|
|
}
|
|
}
|
|
|
|
public void e(String str, Throwable th, Object... objArr) {
|
|
Log.e(this.zza, format(str, objArr), th);
|
|
}
|
|
|
|
protected String format(String str, Object... objArr) {
|
|
if (objArr != null && objArr.length > 0) {
|
|
str = String.format(Locale.US, str, objArr);
|
|
}
|
|
return this.zzb.concat(str);
|
|
}
|
|
|
|
public String getTag() {
|
|
return this.zza;
|
|
}
|
|
|
|
public void i(String str, Object... objArr) {
|
|
Log.i(this.zza, format(str, objArr));
|
|
}
|
|
|
|
public boolean isLoggable(int i) {
|
|
return this.zzd <= i;
|
|
}
|
|
|
|
public void v(String str, Throwable th, Object... objArr) {
|
|
if (isLoggable(2)) {
|
|
Log.v(this.zza, format(str, objArr), th);
|
|
}
|
|
}
|
|
|
|
public void w(String str, Object... objArr) {
|
|
Log.w(this.zza, format(str, objArr));
|
|
}
|
|
|
|
public void wtf(String str, Throwable th, Object... objArr) {
|
|
Log.wtf(this.zza, format(str, objArr), th);
|
|
}
|
|
|
|
public void e(String str, Object... objArr) {
|
|
Log.e(this.zza, format(str, objArr));
|
|
}
|
|
|
|
public void wtf(Throwable th) {
|
|
Log.wtf(this.zza, th);
|
|
}
|
|
|
|
public void v(String str, Object... objArr) {
|
|
if (isLoggable(2)) {
|
|
Log.v(this.zza, format(str, objArr));
|
|
}
|
|
}
|
|
} |