// tell the operator how to use this application
fgUsage();
- SG_LOG( SG_GENERAL, SG_ALERT, "Base package check failed ... "
- << "Found version " << base_version << " at: "
- << globals->get_fg_root() );
- SG_LOG( SG_GENERAL, SG_ALERT, "Please upgrade to version"
- << required_version);
+ cout << endl << "Base package check failed ... " \
+ << "Found version " << base_version << " at: " \
+ << globals->get_fg_root() << endl;
+ cout << "Please upgrade to version" << required_version << endl;
exit(-1);
}
}
if ( parse_option( line ) == FG_OPTIONS_ERROR ) {
- SG_LOG( SG_GENERAL, SG_ALERT,
- "Config file parse error: " << path << " '"
- << line << "'" );
+ cout << endl << "Config file parse error: " << path << " '"
+ << line << "'" << endl;
fgUsage();
exit(-1);
}