aboutsummaryrefslogtreecommitdiff
path: root/src/trinitycore/Master.cpp
diff options
context:
space:
mode:
authorraczman <none@none>2009-01-15 22:01:47 -0500
committerraczman <none@none>2009-01-15 22:01:47 -0500
commit4ce857b400770023afb45ffdab09a3a1a5db83e0 (patch)
tree4a21c8c42089d8a1e78d9fad3ec06dd09241beb0 /src/trinitycore/Master.cpp
parenta48321f34805153d1dfe462e3950c63299ea4184 (diff)
Cleanup of log output
--HG-- branch : trunk
Diffstat (limited to 'src/trinitycore/Master.cpp')
-rw-r--r--src/trinitycore/Master.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/trinitycore/Master.cpp b/src/trinitycore/Master.cpp
index c1484fede8e..ed526f497c3 100644
--- a/src/trinitycore/Master.cpp
+++ b/src/trinitycore/Master.cpp
@@ -1,4 +1,4 @@
-/*
+/*
* Copyright (C) 2005-2008 MaNGOS <http://www.mangosproject.org/>
*
* Copyright (C) 2008 Trinity <http://www.trinitycore.org/>
@@ -408,7 +408,7 @@ bool Master::_StartDB()
sLog.outError("Database not specified in configuration file");
return false;
}
- sLog.outString("World Database: %s", dbstring.c_str());
+ sLog.outDetail("World Database: %s", dbstring.c_str());
///- Initialise the world database
if(!WorldDatabase.Initialize(dbstring.c_str()))
@@ -422,7 +422,7 @@ bool Master::_StartDB()
sLog.outError("Character Database not specified in configuration file");
return false;
}
- sLog.outString("Character Database: %s", dbstring.c_str());
+ sLog.outDetail("Character Database: %s", dbstring.c_str());
///- Initialise the Character database
if(!CharacterDatabase.Initialize(dbstring.c_str()))
@@ -439,7 +439,7 @@ bool Master::_StartDB()
}
///- Initialise the login database
- sLog.outString("Login Database: %s", dbstring.c_str() );
+ sLog.outDetail("Login Database: %s", dbstring.c_str() );
if(!LoginDatabase.Initialize(dbstring.c_str()))
{
sLog.outError("Cannot connect to login database %s",dbstring.c_str());