mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-21 09:44:45 +01:00
Core/Logging: Fix PlayerDump logging
This commit is contained in:
@@ -86,7 +86,7 @@ extern int main(int argc, char **argv)
|
||||
{
|
||||
if (++c >= argc)
|
||||
{
|
||||
printf("Runtime-Error: -c option requires an input argument");
|
||||
printf("Runtime-Error: -c option requires an input argument\n");
|
||||
usage(argv[0]);
|
||||
return 1;
|
||||
}
|
||||
@@ -98,8 +98,8 @@ extern int main(int argc, char **argv)
|
||||
|
||||
if (!ConfigMgr::Load(cfg_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!");
|
||||
printf("Invalid or missing configuration file : %s\n", cfg_file);
|
||||
printf("Verify that the file exists and has \'[authserver]\' written in the top of the file!\n");
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user