Lines Matching refs:severity

49 // things to LOG(<a particular severity level>).  E.g.,
119 // The supported severity levels for macros that allow you to specify one
120 // are (in increasing order of severity) INFO, WARNING, ERROR, and FATAL.
122 // Very important: logging a message at the FATAL severity level causes
125 // There is the special severity of DFATAL, which logs FATAL in debug mode,
223 BASE_EXPORT bool ShouldCreateLogMessage(int severity);
266 typedef bool (*LogMessageHandlerFunction)(int severity,
316 #define LOG_IS_ON(severity) \
317 (::logging::ShouldCreateLogMessage(::logging::LOG_##severity))
339 #define LOG_STREAM(severity) COMPACT_GOOGLE_LOG_ ## severity.stream()
341 #define LOG(severity) LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity))
342 #define LOG_IF(severity, condition) \
343 LAZY_STREAM(LOG_STREAM(severity), LOG_IS_ON(severity) && (condition))
345 #define SYSLOG(severity) LOG(severity)
346 #define SYSLOG_IF(severity, condition) LOG_IF(severity, condition)
504 #define DLOG_IS_ON(severity) LOG_IS_ON(severity)
505 #define DLOG_IF(severity, condition) LOG_IF(severity, condition)
516 #define DLOG_IS_ON(severity) false
517 #define DLOG_IF(severity, condition) EAT_STREAM_PARAMETERS
535 #define DLOG(severity) \
536 LAZY_STREAM(LOG_STREAM(severity), DLOG_IS_ON(severity))
627 // Used for LOG(severity).
628 LogMessage(const char* file, int line, LogSeverity severity);
630 // Used for CHECK(). Implied severity = LOG_FATAL.
634 // Implied severity = LOG_FATAL.
638 LogMessage(const char* file, int line, LogSeverity severity,