Skip to content
Snippets Groups Projects
Commit a379e659 authored by Steven Murray's avatar Steven Murray
Browse files

cta/CTA#523 Made all of the CTA logger levels uppercase

parent 883dba7d
No related branches found
No related tags found
No related merge requests found
......@@ -120,14 +120,14 @@ std::map<int, std::string>
std::map<int, std::string> m;
try {
m[LOG_EMERG] = "Emerg";
m[ALERT] = "Alert";
m[LOG_CRIT] = "Crit";
m[ERR] = "Error";
m[WARNING] = "Warn";
m[LOG_NOTICE] = "Notice";
m[INFO] = "Info";
m[DEBUG] = "Debug";
m[LOG_EMERG] = "EMERG";
m[ALERT] = "ALERT";
m[LOG_CRIT] = "CRIT";
m[ERR] = "ERROR";
m[WARNING] = "WARN";
m[LOG_NOTICE] = "NOTICE";
m[INFO] = "INFO";
m[DEBUG] = "DEBUG";
} catch(std::exception &se) {
exception::Exception ex;
ex.getMessage() << "Failed to generate priority to text mapping: " <<
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment