This commit is contained in:
Jonas Zeunert
2019-08-06 20:58:24 +02:00
parent 50dcb7d9d0
commit f5c243ca1e

View File

@@ -54,7 +54,7 @@ void FlippRServer::parse_server_config_file()
catch(const std::exception e) catch(const std::exception e)
{ {
logger().information(FCYN("server_config.json not specified!")); logger().information(FCYN("server_config.json not specified!"));
return; Application::EXIT_USAGE;
} }
try try
@@ -64,7 +64,7 @@ void FlippRServer::parse_server_config_file()
catch(const std::exception e) catch(const std::exception e)
{ {
logger().information(FRED("server_config.json not readable!")); logger().information(FRED("server_config.json not readable!"));
return; Application::EXIT_IOERR;
} }
logger().information(FCYN("Parsing server_config.json...")); logger().information(FCYN("Parsing server_config.json..."));