mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 18:03:06 +09:00
19 lines
435 B
Java
19 lines
435 B
Java
|
|
package com.adjust.sdk;
|
||
|
|
|
||
|
|
import android.util.Log;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Created by pfms on 11/03/15.
|
||
|
|
*/
|
||
|
|
public enum LogLevel {
|
||
|
|
VERBOSE(Log.VERBOSE), DEBUG(Log.DEBUG), INFO(Log.INFO), WARN(Log.WARN), ERROR(Log.ERROR), ASSERT(Log.ASSERT);
|
||
|
|
final int androidLogLevel;
|
||
|
|
|
||
|
|
LogLevel(final int androidLogLevel) {
|
||
|
|
this.androidLogLevel = androidLogLevel;
|
||
|
|
}
|
||
|
|
|
||
|
|
public int getAndroidLogLevel() {
|
||
|
|
return androidLogLevel;
|
||
|
|
}
|
||
|
|
}
|