Define LOGS_FATAL¶
Defined in File Log.h
Define Documentation¶
- 
LOGS_FATAL(message)¶ Log a fatal-level message to the default logger using an iostream-based interface.
Message is any expression which can appear on the right side of the stream insertion operator, e.g.
LOGS_FATAL("coordinates: x=" << x << " y=" << y);. Usual caveat regarding commas inside macro arguments applies to message argument.- Parameters
 message: Message to be logged.