mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-13 16:58:52 -05:00
common/logging: don't use regex for path trimming
This commit is contained in:
committed by
FearlessTobi
parent
a167da4278
commit
a31ed02ae4
@ -120,7 +120,7 @@ private:
|
||||
duration_cast<std::chrono::microseconds>(steady_clock::now() - time_origin);
|
||||
entry.log_class = log_class;
|
||||
entry.log_level = log_level;
|
||||
entry.filename = Common::TrimSourcePath(filename);
|
||||
entry.filename = filename;
|
||||
entry.line_num = line_nr;
|
||||
entry.function = function;
|
||||
entry.message = std::move(message);
|
||||
|
Reference in New Issue
Block a user