blob: 26a5a199e55641329f4e7ece56ce750fac532de1 [file] [log] [blame]
// Copyright 2011 Google Inc. All Rights Reserved.
#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_