![]() |
GIRAFFE Pipeline Reference Manual |
|||
|
|
Error Reporting Utilities
Detailed DescriptionTBD Function Documentation
Log a "critical" warning.
This is a convenience function to log a message with level It is up to the application to decide which warnings are critical and which are not. To cause a termination of the application on critical warnings you may call cx_log_set_always_fatal().
Definition at line 99 of file gimessages.c.
Log an error message.
This is a convenience function to log an error message specified by the format string format and the following list of arguments via the installed log handler. Error messages are always considered fatal, i.e. the application is immediately terminated by a call to abort() causing a core dump. Do not use this function for expected (recoverable) errors. This function should be used to indicate a bug (assertion failure) in the application.
Definition at line 67 of file gimessages.c.
Log a normal message.
This is a convenience function to log an ordinary message, as specified by the format string format and the following list of arguments, via the installed log handler. Definition at line 154 of file gimessages.c. Referenced by giraffe_extract_spectra(), and giraffe_slitgeometry_print().
Log a warning.
This is a convenience function to log a warning message, as specified by the format string format and the following list of arguments, via the installed log handler.
Definition at line 127 of file gimessages.c. Referenced by giraffe_calibrate_flux(), giraffe_extract_spectra(), giraffe_get_mode(), and giraffe_parse_spectrum_selection(). |