ifs.open( FileName.c_str() );
if ( !ifs.good() )
{
- GlobalLogger.error() << "Error: could not open " << FileName
- << " file." << endl;
+ GlobalLogger.error() << "Could not open " << FileName
+ << " file. Specify using argument --config-file"
+ << endl;
return false;
}
}
catch ( const invalid_option_value &e )
{
- GlobalLogger.error() << "Error: invalid option value exception thrown parsing config file:"
+ GlobalLogger.error() << "Invalid option value exception thrown parsing config file:"
<< e.what() << endl;
return false;
}