Skip to content

Commit

Permalink
Merge pull request #85 from norberttak/bug-error-log-level
Browse files Browse the repository at this point in the history
ConfigParser: fix ERROR log level option
  • Loading branch information
norberttak authored Nov 25, 2023
2 parents ef293f5 + af261f8 commit d75bdba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/ConfigParser.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ int Configparser::handle_on_log_level(IniFileSectionHeader section_header, std::
level = TLogLevel::logINFO;
else if (value == "WARNING")
level = TLogLevel::logWARNING;
else if (value == "PARSER_ERROR")
else if (value == "ERROR")
level = TLogLevel::logERROR;
else if (value == "TRACE")
level = TLogLevel::logTRACE;
Expand Down

0 comments on commit d75bdba

Please sign in to comment.