Various logging adjustments

This commit is contained in:
Akkadius
2015-01-20 03:20:40 -06:00
parent e79c1c1a5a
commit 42dffec4ae
4 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -100,7 +100,7 @@ XS(XS_EQEmuIO_PRINT)
int len = 0;
for(i = 0; *cur != '\0'; i++, cur++) {
if(*cur == '\n') {
Log.Out(Logs::Detail, Logs::Quests, str);
Log.Out(Logs::General, Logs::Quests, str);
len = 0;
pos = i+1;
} else {
@@ -108,7 +108,7 @@ XS(XS_EQEmuIO_PRINT)
}
}
if(len > 0) {
Log.Out(Logs::Detail, Logs::Quests, str);
Log.Out(Logs::General, Logs::Quests, str);
}
}