mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Common: Migrate logging to fmt
Continues the migration of our code over to the fmt logger.
This commit is contained in:
@ -36,10 +36,10 @@ void SymbolDB::List()
|
||||
{
|
||||
for (const auto& func : m_functions)
|
||||
{
|
||||
DEBUG_LOG(OSHLE, "%s @ %08x: %i bytes (hash %08x) : %i calls", func.second.name.c_str(),
|
||||
func.second.address, func.second.size, func.second.hash, func.second.num_calls);
|
||||
DEBUG_LOG_FMT(OSHLE, "{} @ {:08x}: {} bytes (hash {:08x}) : {} calls", func.second.name,
|
||||
func.second.address, func.second.size, func.second.hash, func.second.num_calls);
|
||||
}
|
||||
INFO_LOG(OSHLE, "%zu functions known in this program above.", m_functions.size());
|
||||
INFO_LOG_FMT(OSHLE, "{} functions known in this program above.", m_functions.size());
|
||||
}
|
||||
|
||||
bool SymbolDB::IsEmpty() const
|
||||
|
Reference in New Issue
Block a user