Rabbit-R1/switch port/java/sources/io/sentry/util/LogUtils.java

17 lines
585 B
Java
Raw Normal View History

2024-05-21 16:08:36 -05:00
package io.sentry.util;
import androidx.compose.material3.TextFieldImplKt;
import io.sentry.ILogger;
import io.sentry.SentryLevel;
/* loaded from: classes3.dex */
public final class LogUtils {
public static void logNotInstanceOf(Class<?> cls, Object obj, ILogger iLogger) {
SentryLevel sentryLevel = SentryLevel.DEBUG;
Object[] objArr = new Object[2];
objArr[0] = obj != null ? obj.getClass().getCanonicalName() : TextFieldImplKt.PlaceholderId;
objArr[1] = cls.getCanonicalName();
iLogger.log(sentryLevel, "%s is not %s", objArr);
}
}