Port Status messages from Type to Category

This commit is contained in:
Akkadius
2015-01-18 01:27:52 -06:00
parent 975c298c85
commit e9f8d5fa6d
16 changed files with 72 additions and 72 deletions
+2 -2
View File
@@ -61,7 +61,7 @@ PathManager* PathManager::LoadPathFile(const char* ZoneName)
if(Ret->loadPaths(PathFile))
{
Log.Log(EQEmuLogSys::Status, "Path File %s loaded.", ZonePathFileName);
Log.DebugCategory(EQEmuLogSys::General, EQEmuLogSys::Status, "Path File %s loaded.", ZonePathFileName);
}
else
@@ -109,7 +109,7 @@ bool PathManager::loadPaths(FILE *PathFile)
fread(&Head, sizeof(Head), 1, PathFile);
Log.Log(EQEmuLogSys::Status, "Path File Header: Version %ld, PathNodes %ld",
Log.DebugCategory(EQEmuLogSys::General, EQEmuLogSys::Status, "Path File Header: Version %ld, PathNodes %ld",
(long)Head.version, (long)Head.PathNodeCount);
if(Head.version != 2)