summaryrefslogtreecommitdiff
path: root/src/authserver/Main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/authserver/Main.cpp')
-rw-r--r--src/authserver/Main.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/authserver/Main.cpp b/src/authserver/Main.cpp
index 8594f301e1..57ed11e458 100644
--- a/src/authserver/Main.cpp
+++ b/src/authserver/Main.cpp
@@ -96,15 +96,14 @@ extern int main(int argc, char** argv)
cfg_def_file += ".dist";
if (!sConfigMgr->LoadInitial(cfg_def_file.c_str())) {
- printf("Invalid or missing default configuration file : %s\n", cfg_def_file.c_str());
+ printf("ERROR: Invalid or missing default configuration file : %s\n", cfg_def_file.c_str());
return 1;
}
if (!sConfigMgr->LoadMore(configFile))
{
- printf("Invalid or missing configuration file : %s\n", configFile);
+ printf("WARNING: Invalid or missing configuration file : %s\n", configFile);
printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!\n");
- return 1;
}
sLog->outString("%s (authserver)", _FULLVERSION);