Chromium Code Reviews| Index: base/logging.h |
| diff --git a/base/logging.h b/base/logging.h |
| index 3dde7027a61a332814ec808788670e3965851387..bbf24a30669eca3f0895fa0ba849cfcd6a96b8a7 100644 |
| --- a/base/logging.h |
| +++ b/base/logging.h |
| @@ -795,6 +795,9 @@ class BASE_EXPORT LogMessage { |
| std::ostream& stream() { return stream_; } |
| + LogSeverity severity() { return severity_; } |
| + std::string str() { return stream_.str(); } |
| + |
| private: |
| void Init(const char* file, int line); |