blob: d9ac925694b7f6ab0c6e2f2d6c5c3022ddb86446 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
// Author: enh@google.com (Elliott Hughes)
#ifndef BASE_LOG_SEVERITY_H_
#define BASE_LOG_SEVERITY_H_
typedef int LogSeverity;
const int INFO = 0, WARNING = 1, ERROR = 2, FATAL = 3, NUM_SEVERITIES = 4;
#endif // BASE_LOG_SEVERITY_H_