diff options
Diffstat (limited to '')
| -rw-r--r-- | src/common/logging/backend.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/common/logging/backend.h b/src/common/logging/backend.h index 795d42ebd..3fe88e4f6 100644 --- a/src/common/logging/backend.h +++ b/src/common/logging/backend.h | |||
| @@ -44,10 +44,8 @@ const char* GetLogClassName(Class log_class); | |||
| 44 | const char* GetLevelName(Level log_level); | 44 | const char* GetLevelName(Level log_level); |
| 45 | 45 | ||
| 46 | /// Creates a log entry by formatting the given source location, and message. | 46 | /// Creates a log entry by formatting the given source location, and message. |
| 47 | Entry CreateEntry(Class log_class, Level log_level, | 47 | Entry CreateEntry(Class log_class, Level log_level, const char* filename, unsigned int line_nr, |
| 48 | const char* filename, unsigned int line_nr, const char* function, | 48 | const char* function, const char* format, va_list args); |
| 49 | const char* format, va_list args); | ||
| 50 | 49 | ||
| 51 | void SetFilter(Filter* filter); | 50 | void SetFilter(Filter* filter); |
| 52 | |||
| 53 | } | 51 | } |