diff options
Diffstat (limited to 'runtime/base/logging.h')
| -rw-r--r-- | runtime/base/logging.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/base/logging.h b/runtime/base/logging.h index baa83e35af..ae83e331fd 100644 --- a/runtime/base/logging.h +++ b/runtime/base/logging.h @@ -244,6 +244,10 @@ class LogMessage { // The routine that performs the actual logging. static void LogLine(const char* file, unsigned int line, LogSeverity severity, const char* msg); + // A variant of the above for use with little stack. + static void LogLineLowStack(const char* file, unsigned int line, LogSeverity severity, + const char* msg); + private: const std::unique_ptr<LogMessageData> data_; |