diff options
author | BreadFish64 <mohror64@gmail.com> | 2019-12-24 14:19:18 -0600 |
---|---|---|
committer | FearlessTobi <thm.frey@gmail.com> | 2020-01-23 23:08:05 +0100 |
commit | a31ed02ae48eaeb3ee6ac1c45f21d5dd3a9ac376 (patch) | |
tree | 124b9f967df80d15379059dccd256903463bfa29 /src/common/logging/backend.h | |
parent | a167da4278df6d864a8990f846cf3ede1158f3db (diff) |
common/logging: don't use regex for path trimming
Diffstat (limited to 'src/common/logging/backend.h')
-rw-r--r-- | src/common/logging/backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index fca0267a1d..fc338c70de 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h @@ -23,7 +23,7 @@ struct Entry { std::chrono::microseconds timestamp; Class log_class; Level log_level; - std::string filename; + const char* filename; unsigned int line_num; std::string function; std::string message; |