mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-28 18:12:31 -06:00
17 lines
392 B
Java
17 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);
|
||
|
}
|
||
|
}
|