Home
last modified time | relevance | path

Searched refs:LOG_PRIORITY_MAP (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/cmds/incident_helper/java/com/android/commands/incident/sections/
DPersistLogSection.java58 private static final Map<Character, Integer> LOG_PRIORITY_MAP = new HashMap<>(); field in PersistLogSection
71 LOG_PRIORITY_MAP.put('V', TextLogEntry.LOG_VERBOSE);
72 LOG_PRIORITY_MAP.put('D', TextLogEntry.LOG_DEBUG);
73 LOG_PRIORITY_MAP.put('I', TextLogEntry.LOG_INFO);
74 LOG_PRIORITY_MAP.put('W', TextLogEntry.LOG_WARN);
75 LOG_PRIORITY_MAP.put('E', TextLogEntry.LOG_ERROR);
76 LOG_PRIORITY_MAP.put('F', TextLogEntry.LOG_FATAL);
77 LOG_PRIORITY_MAP.put('S', TextLogEntry.LOG_SILENT);
207 LOG_PRIORITY_MAP.getOrDefault(priority, TextLogEntry.LOG_DEFAULT)); in parseLine()