gnb,config: Changed logging for setting not found exception, to make it clearer which setting was not found

master
Pedro Alvarez 3 years ago
parent 19487c680c
commit ca9b99fb47

@ -109,7 +109,7 @@ int parser::section::parse(Setting& root)
*enabled_value = false;
return 0;
} else {
std::cerr << "Error section " << name.c_str() << " not found." << std::endl;
std::cerr << "Error in section " << name.c_str() << ". " << ex.getPath() << " not found." << std::endl;
return -1;
}
}

Loading…
Cancel
Save