logging/backend: Change type of filename from string to const c… (#5078)
logging/backend: Change type of filename from string to const char*
This commit is contained in:
commit
3a1c68accd
1 changed files with 1 additions and 1 deletions
|
@ -24,7 +24,7 @@ struct Entry {
|
||||||
std::chrono::microseconds timestamp;
|
std::chrono::microseconds timestamp;
|
||||||
Class log_class;
|
Class log_class;
|
||||||
Level log_level;
|
Level log_level;
|
||||||
std::string filename;
|
const char* filename;
|
||||||
unsigned int line_num;
|
unsigned int line_num;
|
||||||
std::string function;
|
std::string function;
|
||||||
std::string message;
|
std::string message;
|
||||||
|
|
Loading…
Reference in a new issue