mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 01:52:26 -06:00
16 lines
392 B
Java
16 lines
392 B
Java
package org.webrtc;
|
|
|
|
import org.webrtc.Logging;
|
|
|
|
/* loaded from: classes3.dex */
|
|
class JNILogging {
|
|
private final Loggable loggable;
|
|
|
|
public JNILogging(Loggable loggable) {
|
|
this.loggable = loggable;
|
|
}
|
|
|
|
public void logToInjectable(String str, Integer num, String str2) {
|
|
this.loggable.onLogMessage(str, Logging.Severity.values()[num.intValue()], str2);
|
|
}
|
|
}
|