Searched refs:LogLevel (Results 1 – 3 of 3) sorted by relevance
94 public Util.LogLevel getLoggingLevel() { in getLoggingLevel()95 return Util.LogLevel.values()[mPrefs.getInt(LOGGING_LEVEL, Util.LogLevel.Off.ordinal())]; in getLoggingLevel()98 public void setLoggingLevel(Util.LogLevel level) { in setLoggingLevel()
126 Util.LogLevel loggingLevel = mPreferences.getLoggingLevel(); in onCreate()142 mPreferences.setLoggingLevel(Util.LogLevel.Off); in onCreate()145 mPreferences.setLoggingLevel(Util.LogLevel.Debug); in onCreate()148 mPreferences.setLoggingLevel(Util.LogLevel.Verbose); in onCreate()
45 public static LogLevel sLoggingLevel = LogLevel.Off;255 return sLoggingLevel.ordinal() >= LogLevel.Debug.ordinal(); in logDebugEnabled()259 return sLoggingLevel.ordinal() >= LogLevel.Verbose.ordinal(); in logVerboseEnabled()278 public static void setLoggingLevel(LogLevel level) { in setLoggingLevel()299 public enum LogLevel {Off, Debug, Verbose} enum in Util