Home | History | Annotate | Download | only in src

Lines Matching refs:FATAL

7 // LOG(tag) prints messages.  Tags are INFO, WARNING, ERROR and FATAL.
8 // INFO prints to stdout, the others to stderr. FATAL aborts after printing.
18 // CHECK(predicate) logs a FATAL error if predicate is false.
34 enum Severity {INFO = 0, WARNING, ERROR, FATAL};
87 const LogSeverity FATAL = relocation_packer::Logger::FATAL;
90 // severity is FATAL. LOG_IF(severity, predicate) does the same but only if
105 // CHECK(predicate) fails with a FATAL log message if predicate is false.
106 #define CHECK(predicate) (LOG_IF(FATAL, !(predicate)) \
110 // NOTREACHED() always fails with a FATAL log message.
111 #define NOTREACHED(_) (LOG(FATAL) \