21 lines
476 B
Java
21 lines
476 B
Java
package com.unity3d.ads.log;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class DeviceLogLevel {
|
|
private static final String LOG_TAG = "UnityAds";
|
|
private String _receivingMethodName;
|
|
|
|
public DeviceLogLevel(String str) {
|
|
this._receivingMethodName = null;
|
|
this._receivingMethodName = str;
|
|
}
|
|
|
|
public String getLogTag() {
|
|
return LOG_TAG;
|
|
}
|
|
|
|
public String getReceivingMethodName() {
|
|
return this._receivingMethodName;
|
|
}
|
|
}
|