Add 'Quests' Category

This commit is contained in:
Akkadius
2015-01-16 21:19:19 -06:00
parent bfd73e5b96
commit ef4847555a
3 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -226,7 +226,7 @@ bool EQEmuLog::writePVA(LogIDs id, const char *prefix, const char *fmt, va_list
if (id == EQEmuLog::LogIDs::Crash){ SetConsoleTextAttribute(console_handle, ConsoleColor::Colors::LightRed); }
#endif
fprintf(stdout, "[%s] %s", LogNames[id], prefix);
fprintf(stdout, "[%s] %s", LogNames[id], prefix);
vfprintf(stdout, fmt, argptr);
#ifdef _WINDOWS
+2
View File
@@ -74,6 +74,7 @@ public:
Client_Server_Packet,
Aggro,
Attack,
Quests,
MaxCategoryID /* Don't Remove this*/
};
@@ -139,6 +140,7 @@ static const char* LogCategoryName[EQEmuLogSys::LogCategory::MaxCategoryID] = {
"Client_Server_Packet",
"Aggro",
"Attack",
"Quests"
};
#endif