mirror of
https://github.com/FairRootGroup/FairMQ.git
synced 2025-10-15 09:31:45 +00:00
convert log severities use to lowercase and remove use of MQLOG
This commit is contained in:
committed by
Mohammad Al-Turany
parent
4e942e489b
commit
a3393e600e
@@ -98,7 +98,7 @@ class FairProgOptions
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG(ERROR) << "Config has no key: " << key;
|
||||
LOG(error) << "Config has no key: " << key;
|
||||
}
|
||||
}
|
||||
catch (std::exception& e)
|
||||
@@ -125,8 +125,8 @@ class FairProgOptions
|
||||
}
|
||||
catch (std::exception& e)
|
||||
{
|
||||
LOG(ERROR) << "Exception thrown for the key '" << key << "'";
|
||||
LOG(ERROR) << e.what();
|
||||
LOG(error) << "Exception thrown for the key '" << key << "'";
|
||||
LOG(error) << e.what();
|
||||
}
|
||||
|
||||
return valueStr;
|
||||
@@ -152,7 +152,7 @@ class FairProgOptions
|
||||
}
|
||||
else
|
||||
{
|
||||
LOG(ERROR) << "the provided string " << strValue << " cannot be converted in the requested type. The target types must be arithmetic types";
|
||||
LOG(error) << "the provided string " << strValue << " cannot be converted in the requested type. The target types must be arithmetic types";
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user