diff options
| author | 2019-12-24 14:19:18 -0600 | |
|---|---|---|
| committer | 2020-01-23 23:08:05 +0100 | |
| commit | a31ed02ae48eaeb3ee6ac1c45f21d5dd3a9ac376 (patch) | |
| tree | 124b9f967df80d15379059dccd256903463bfa29 /src/common/logging/backend.cpp | |
| parent | Merge pull request #3341 from bunnei/time-posix-myrule (diff) | |
| download | yuzu-a31ed02ae48eaeb3ee6ac1c45f21d5dd3a9ac376.tar.gz yuzu-a31ed02ae48eaeb3ee6ac1c45f21d5dd3a9ac376.tar.xz yuzu-a31ed02ae48eaeb3ee6ac1c45f21d5dd3a9ac376.zip | |
common/logging: don't use regex for path trimming
Diffstat (limited to '')
| -rw-r--r-- | src/common/logging/backend.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.cpp b/src/common/logging/backend.cpp index 8f2591d53..04bc3128f 100644 --- a/src/common/logging/backend.cpp +++ b/src/common/logging/backend.cpp | |||
| @@ -120,7 +120,7 @@ private: | |||
| 120 | duration_cast<std::chrono::microseconds>(steady_clock::now() - time_origin); | 120 | duration_cast<std::chrono::microseconds>(steady_clock::now() - time_origin); |
| 121 | entry.log_class = log_class; | 121 | entry.log_class = log_class; |
| 122 | entry.log_level = log_level; | 122 | entry.log_level = log_level; |
| 123 | entry.filename = Common::TrimSourcePath(filename); | 123 | entry.filename = filename; |
| 124 | entry.line_num = line_nr; | 124 | entry.line_num = line_nr; |
| 125 | entry.function = function; | 125 | entry.function = function; |
| 126 | entry.message = std::move(message); | 126 | entry.message = std::move(message); |