mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-27 01:22:33 -06:00
16 lines
585 B
Java
16 lines
585 B
Java
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);
|
|
}
|
|
}
|