Skip to content

Commit b3ac562

Browse files
ehellbarktf
authored andcommitted
adding error and critical severity to DPLRawParser
1 parent e5f893f commit b3ac562

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Framework/Utils/include/DPLUtils/DPLRawParser.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,10 @@ class DPLRawParser
250250
LOG(warn) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
251251
} else if (this->mSeverity == fair::Severity::fatal) {
252252
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();
253257
} else if (this->mSeverity == fair::Severity::info) {
254258
LOG(info) << msg << (*this->mInputIterator).spec->binding << " : " << e.what();
255259
} else {

0 commit comments

Comments
 (0)