Home | History | Annotate | Download | only in base

Lines Matching refs:severity

43 // things to LOG(<a particular severity level>).  E.g.,
74 // The supported severity levels for macros that allow you to specify one
75 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
77 // There is also the special severity of DFATAL, which logs FATAL in
80 // Very important: logging a message at the FATAL severity level causes
124 // Sets the log filter prefix. Any log message below LOG_ERROR severity that
127 // with severity of LOG_ERROR or higher will not be filtered.
190 #define LOG(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
191 #define SYSLOG(severity) LOG(severity)
193 #define LOG_IF(severity, condition) \
194 !(condition) ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
195 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
240 #define DLOG(severity) LOG(severity)
241 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
341 #define DLOG(severity) \
342 true ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
344 #define DLOG_IF(severity, condition) \
345 true ? (void) 0 : logging::LogMessageVoidify() & LOG(severity)
410 LogMessage(const char* file, int line, LogSeverity severity, int ctr);
416 // severity = LOG_INFO, ctr = 0
422 // Used for LOG(severity) where severity != INFO. Implied
427 LogMessage(const char* file, int line, LogSeverity severity);
430 // Implied severity = LOG_FATAL