diff options
Diffstat (limited to 'src/account-server/main-account.cpp')
-rw-r--r-- | src/account-server/main-account.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/account-server/main-account.cpp b/src/account-server/main-account.cpp index 87fe68b8..1d83020b 100644 --- a/src/account-server/main-account.cpp +++ b/src/account-server/main-account.cpp @@ -147,7 +147,7 @@ void initialize() // --- Initialize enet. if (enet_initialize() != 0) { - LOG_FATAL("An error occurred while initializing ENet", 0); + LOG_FATAL("An error occurred while initializing ENet"); exit(2); } @@ -277,7 +277,7 @@ int main(int argc, char *argv[]) if (!accountHandler->startListen(port) || !serverHandler->startListen(port + 1) || !chatHandler->startListen(port + 2)) { - LOG_ERROR("Unable to create an ENet server host.", 0); + LOG_FATAL("Unable to create an ENet server host."); return 3; } |