diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-04 13:46:01 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-04 13:46:01 -0500 |
commit | 6ad66acce23dd66013a72b5f900eacf948593413 (patch) | |
tree | 372d88ce1832b0a7bcf909f59c64671d17f2b0ef /src/common/logging/backend.h | |
parent | be6bf37224f4fbd1fdd6ea0f596769b94123f687 (diff) | |
parent | f8f1ff0b4f79a6c8807c3bca71e9a7a3ec4bff69 (diff) |
Merge pull request #2188 from lioncash/log-static
logging/backend: Move CreateEntry into the Impl class. Relocate local static to a class variable
Diffstat (limited to 'src/common/logging/backend.h')
-rw-r--r-- | src/common/logging/backend.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index a31ee6968..fca0267a1 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h @@ -135,10 +135,6 @@ const char* GetLogClassName(Class log_class); */ const char* GetLevelName(Level log_level); -/// Creates a log entry by formatting the given source location, and message. -Entry CreateEntry(Class log_class, Level log_level, const char* filename, unsigned int line_nr, - const char* function, std::string message); - /** * The global filter will prevent any messages from even being processed if they are filtered. Each * backend can have a filter, but if the level is lower than the global filter, the backend will |