diff options
author | Nay <dnpd.dd@gmail.com> | 2012-08-29 22:29:06 +0100 |
---|---|---|
committer | Nay <dnpd.dd@gmail.com> | 2012-08-29 22:29:06 +0100 |
commit | 872c239dbe0a0a289ed72b3204986df2a612f546 (patch) | |
tree | 7e6298edf370f4e0651723ee9ce5b0b9493fb7ce /src/server/authserver/Main.cpp | |
parent | 3d1f8fd29223bfa4d59bd2390722998311244b7c (diff) | |
parent | e07a8db6da2a057ff5065df901efaa5c417bd9dc (diff) |
Merge remote-tracking branch 'origin/master' into 4.3.4
Diffstat (limited to 'src/server/authserver/Main.cpp')
-rwxr-xr-x | src/server/authserver/Main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/server/authserver/Main.cpp b/src/server/authserver/Main.cpp index b938706a0be..ed0fa9ab06a 100755 --- a/src/server/authserver/Main.cpp +++ b/src/server/authserver/Main.cpp @@ -80,7 +80,7 @@ extern int main(int argc, char **argv) { if (++c >= argc) { - sLog->outError(LOG_FILTER_AUTHSERVER, "Runtime-Error: -c option requires an input argument"); + printf("Runtime-Error: -c option requires an input argument"); usage(argv[0]); return 1; } @@ -92,8 +92,8 @@ extern int main(int argc, char **argv) if (!ConfigMgr::Load(cfg_file)) { - sLog->outError(LOG_FILTER_AUTHSERVER, "Invalid or missing configuration file : %s", cfg_file); - sLog->outError(LOG_FILTER_AUTHSERVER, "Verify that the file exists and has \'[authserver]\' written in the top of the file!"); + printf("Invalid or missing configuration file : %s", cfg_file); + printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!"); return 1; } |