Frontends: Migrate logs over to fmt

This commit is contained in:
Lioncash
2020-11-25 21:13:50 -05:00
parent 4c9ffb58fa
commit ffbf3d71f0
6 changed files with 25 additions and 25 deletions

View File

@ -1601,10 +1601,10 @@ void MenuBar::SearchInstruction()
QString::fromStdString(PPCTables::GetInstructionName(PowerPC::HostRead_U32(addr)));
if (op == ins_name)
{
NOTICE_LOG(POWERPC, "Found %s at %08x", op.toStdString().c_str(), addr);
NOTICE_LOG_FMT(POWERPC, "Found {} at {:08x}", op.toStdString(), addr);
found = true;
}
}
if (!found)
NOTICE_LOG(POWERPC, "Opcode %s not found", op.toStdString().c_str());
NOTICE_LOG_FMT(POWERPC, "Opcode {} not found", op.toStdString());
}