stream-lined error messages: partially implements #986

This commit is contained in:
Dennis Luxen 2014-04-28 11:55:46 +02:00
parent b77dd6699d
commit 8c5f8e995e

View File

@ -228,7 +228,7 @@ int main (int argc, char *argv[]) {
SimpleLogger().Write(logWARNING) << e.what();
return 1;
} catch(std::exception & e) {
SimpleLogger().Write(logWARNING) << "Unhandled exception: " << e.what();
SimpleLogger().Write(logWARNING) << "Exception occured: " << e.what();
return 1;
}
return 0;