We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5f893f commit b3ac562Copy full SHA for b3ac562
1 file changed
Framework/Utils/include/DPLUtils/DPLRawParser.h
@@ -250,6 +250,10 @@ class DPLRawParser
250
LOG(warn) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
251
} else if (this->mSeverity == fair::Severity::fatal) {
252
LOG(fatal) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
253
+ } else if (this->mSeverity == fair::Severity::critical) {
254
+ LOG(critical) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
255
+ } else if (this->mSeverity == fair::Severity::error) {
256
+ LOG(error) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
257
} else if (this->mSeverity == fair::Severity::info) {
258
LOG(info) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
259
} else {
0 commit comments