Log error if any during config file parsing.

This commit is contained in:
Kishore Nallan 2022-01-05 12:54:32 +05:30
parent 4f961f4919
commit 5aeb238405

View File

@ -330,6 +330,7 @@ public:
INIReader reader(this->config_file);
if (reader.ParseError() != 0) {
LOG(ERROR) << "Error while parsing config file, code = " << reader.ParseError();
config_file_validity = -1;
return ;
}