aboutsummaryrefslogtreecommitdiff
path: root/src/game/WorldLog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/WorldLog.cpp')
-rw-r--r--src/game/WorldLog.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/game/WorldLog.cpp b/src/game/WorldLog.cpp
index 435e3279948..377b8758d9f 100644
--- a/src/game/WorldLog.cpp
+++ b/src/game/WorldLog.cpp
@@ -17,69 +17,56 @@
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-
/** \file
\ingroup u2w
*/
-
#include "WorldLog.h"
#include "Policies/SingletonImp.h"
#include "Config/ConfigEnv.h"
#include "Log.h"
-
#define CLASS_LOCK MaNGOS::ClassLevelLockable<WorldLog, ACE_Thread_Mutex>
INSTANTIATE_SINGLETON_2(WorldLog, CLASS_LOCK);
INSTANTIATE_CLASS_MUTEX(WorldLog, ACE_Thread_Mutex);
-
WorldLog::WorldLog() : i_file(NULL)
{
Initialize();
}
-
WorldLog::~WorldLog()
{
if( i_file != NULL )
fclose(i_file);
i_file = NULL;
}
-
/// Open the log file (if specified so in the configuration file)
void WorldLog::Initialize()
{
std::string logsDir = sConfig.GetStringDefault("LogsDir","");
-
if(!logsDir.empty())
{
if((logsDir.at(logsDir.length()-1)!='/') && (logsDir.at(logsDir.length()-1)!='\\'))
logsDir.append("/");
}
-
std::string logname = sConfig.GetStringDefault("WorldLogFile", "");
if(!logname.empty())
{
i_file = fopen((logsDir+logname).c_str(), "w");
}
-
m_dbWorld = sConfig.GetBoolDefault("LogDB.World", false); // can be VERY heavy if enabled
}
-
void WorldLog::outTimestampLog(char const *fmt, ...)
{
if( LogWorld() )
{
Guard guard(*this);
ASSERT(i_file);
-
Log::outTimestamp(i_file);
va_list args;
va_start(args, fmt);
vfprintf(i_file, fmt, args);
//fprintf(i_file, "\n" );
va_end(args);
-
fflush(i_file);
}
-
if (sLog.GetLogDB() && m_dbWorld)
{
va_list ap2;
@@ -90,23 +77,19 @@ void WorldLog::outTimestampLog(char const *fmt, ...)
va_end(ap2);
}
}
-
void WorldLog::outLog(char const *fmt, ...)
{
if( LogWorld() )
{
Guard guard(*this);
ASSERT(i_file);
-
va_list args;
va_start(args, fmt);
vfprintf(i_file, fmt, args);
//fprintf(i_file, "\n" );
va_end(args);
-
fflush(i_file);
}
-
if (sLog.GetLogDB() && m_dbWorld)
{
va_list ap2;
@@ -117,6 +100,5 @@ void WorldLog::outLog(char const *fmt, ...)
va_end(ap2);
}
}
-
#define sWorldLog WorldLog::Instance()