Replaced Status log calls

This commit is contained in:
Akkadius
2015-01-10 15:54:37 -06:00
parent b76e179d75
commit fdbd76e4ad
4 changed files with 39 additions and 39 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ PathManager* PathManager::LoadPathFile(const char* ZoneName)
if(Ret->loadPaths(PathFile))
{
LogFile->write(EQEmuLog::Status, "Path File %s loaded.", ZonePathFileName);
logger.Log(EQEmuLogSys::Status, "Path File %s loaded.", ZonePathFileName);
}
else
@@ -109,7 +109,7 @@ bool PathManager::loadPaths(FILE *PathFile)
fread(&Head, sizeof(Head), 1, PathFile);
LogFile->write(EQEmuLog::Status, "Path File Header: Version %ld, PathNodes %ld",
logger.Log(EQEmuLogSys::Status, "Path File Header: Version %ld, PathNodes %ld",
(long)Head.version, (long)Head.PathNodeCount);
if(Head.version != 2)