Closed
Description
The plasma store recently switched from the LOG_FATAL
macro to ARROW_FATAL
. The change was done in #579.
The LOG_FATAL
macro: https://github.com/ray-project/ray/blob/master/src/common/common.h#L91
ARROW_LOG(FATAL)
is implemented here https://github.com/ray-project/ray/blob/master/src/plasma/logging.h#L95.
Some differences, which we may want to address.
LOG_FATAL
prints a backtrace, which makes debugging easier.LOG_FATAL
exits withabort()
(as opposed toexit()
) so as to produce a core dump.LOG_FATAL
prints the wordFATAL
in the logging message, which makes the log file easier to read/search.
Metadata
Metadata
Assignees
Labels
No labels