Merge pull request #883

459ec60 daemon: print exception errors when failing to parse config file (moneromooo-monero)
This commit is contained in:
Riccardo Spagni 2016-07-06 18:19:40 +02:00
commit 1088ed862b
No known key found for this signature in database
GPG key ID: 55432DF31CCD4FCD

View file

@ -180,7 +180,16 @@ int main(int argc, char const * argv[])
boost::system::error_code ec;
if (bf::exists(config_path, ec))
{
po::store(po::parse_config_file<char>(config_path.string<std::string>().c_str(), core_settings), vm);
try
{
po::store(po::parse_config_file<char>(config_path.string<std::string>().c_str(), core_settings), vm);
}
catch (const std::exception &e)
{
// log system isn't initialized yet
std::cerr << "Error parsing config file: " << e.what() << std::endl;
throw;
}
}
po::notify(vm);