Log level changes

This commit is contained in:
Henrik Rydgard 2013-07-29 22:43:17 +02:00
parent 76e16d49f6
commit 30e18e9344
2 changed files with 3 additions and 3 deletions

View File

@ -142,7 +142,7 @@ void ElfReader::LoadRelocations(Elf32_Rel *rels, int numRelocs)
{
char temp[256];
MIPSDisAsm(op, 0, temp);
ERROR_LOG_REPORT(LOADER, "ARGH IT'S A GP!!!!!!!! %08x : %s", addr, temp);
WARN_LOG_REPORT(LOADER, "ARGH IT'S A GP!!!!!!!! %08x : %s", addr, temp);
}
break;

View File

@ -133,8 +133,8 @@ void RunTests()
o = o.substr(0, o.size() - 1); // For some reason we get some extra character
if (e != o) {
ELOG("DIFF on line %i!", line);
ILOG("O: %s", o.c_str());
ILOG("E: %s", e.c_str());
ELOG("O: %s", o.c_str());
ELOG("E: %s", e.c_str());
}
if (expected.eof()) {
break;