diff options
author | Subv <s.v.h21@hotmail.com> | 2012-08-29 17:36:09 -0500 |
---|---|---|
committer | Subv <s.v.h21@hotmail.com> | 2012-08-29 17:36:09 -0500 |
commit | 532ddfcd402390a9caf3ac5863bba2f0db9d0efc (patch) | |
tree | 652cc3e03595f92958ec5ad85f2c455adb617918 /src/server/authserver/Main.cpp | |
parent | 52389e8ef00646ce623e8d2eef39c12cd7d2faec (diff) | |
parent | e909e5515ba03a2c8df2bc7d4d84ff295e91107d (diff) |
Merge branch 'master' of github.com:TrinityCore/TrinityCore into mmaps
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; } |