diff options
author | megamage <none@none> | 2009-01-16 14:32:47 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-01-16 14:32:47 -0600 |
commit | 80263de422ad4e1cdb103eaec3a2acf74631f884 (patch) | |
tree | b4da0d56676c397cd0ef5a83039e458f67ddd411 /src/trinitycore/Master.cpp | |
parent | 40a1154c5befcfde3d584c71aa1d9a8b6cb1b638 (diff) | |
parent | a8e7fb16493c05a25044c01c5b58ea08e485a97a (diff) |
Update to Trinity 863.
--HG--
branch : trunk
Diffstat (limited to 'src/trinitycore/Master.cpp')
-rw-r--r-- | src/trinitycore/Master.cpp | 8 |
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()); |