blob: d9ac925694b7f6ab0c6e2f2d6c5c3022ddb86446 [file] [log] [blame]
Elliott Hugheseb4f6142011-07-15 17:43:51 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2// Author: enh@google.com (Elliott Hughes)
3
4#ifndef BASE_LOG_SEVERITY_H_
5#define BASE_LOG_SEVERITY_H_
6
7typedef int LogSeverity;
8
9const int INFO = 0, WARNING = 1, ERROR = 2, FATAL = 3, NUM_SEVERITIES = 4;
10
11#endif // BASE_LOG_SEVERITY_H_