Rename reference logger to Log

This commit is contained in:
Akkadius
2015-01-18 00:41:18 -06:00
parent 126eca2ad6
commit 7dbde36b03
119 changed files with 2775 additions and 2775 deletions
+3 -3
View File
@@ -64,7 +64,7 @@ EXTERN_C XS(boot_qc)
file[255] = '\0';
if(items != 1)
logger.Log(EQEmuLogSys::Error, "boot_qc does not take any arguments.");
Log.Log(EQEmuLogSys::Error, "boot_qc does not take any arguments.");
char buf[128]; //shouldent have any function names longer than this.
@@ -100,7 +100,7 @@ XS(XS_EQEmuIO_PRINT)
int len = 0;
for(i = 0; *cur != '\0'; i++, cur++) {
if(*cur == '\n') {
logger.DebugCategory(EQEmuLogSys::Detail, EQEmuLogSys::Quests, str);
Log.DebugCategory(EQEmuLogSys::Detail, EQEmuLogSys::Quests, str);
len = 0;
pos = i+1;
} else {
@@ -108,7 +108,7 @@ XS(XS_EQEmuIO_PRINT)
}
}
if(len > 0) {
logger.DebugCategory(EQEmuLogSys::Detail, EQEmuLogSys::Quest, str);
Log.DebugCategory(EQEmuLogSys::Detail, EQEmuLogSys::Quest, str);
}
}