mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-14 08:12:16 +00:00
Format log lines to make it possible to ctrl click on them and go to the log location (#2345)
This commit is contained in:
parent
b879dd59c6
commit
131b6f90e0
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@ std::string FormatLogMessage(const Entry& entry) {
|
|||
const char* class_name = GetLogClassName(entry.log_class);
|
||||
const char* level_name = GetLevelName(entry.log_level);
|
||||
|
||||
return fmt::format("[{}] <{}> {}:{}:{}: {}", class_name, level_name, entry.filename,
|
||||
entry.function, entry.line_num, entry.message);
|
||||
return fmt::format("[{}] <{}> {}:{} {}: {}", class_name, level_name, entry.filename,
|
||||
entry.line_num, entry.function, entry.message);
|
||||
}
|
||||
|
||||
void PrintMessage(const Entry& entry) {
|
||||
|
|
Loading…
Add table
Reference in a new issue