Error Reporting Utilities
Functions | |
| void | gi_error (const cxchar *format,...) |
| Log an error message. | |
| void | gi_critical (const cxchar *format,...) |
| Log a "critical" warning. | |
| void | gi_warning (const cxchar *format,...) |
| Log a warning. | |
| void | gi_message (const cxchar *format,...) |
| Log a normal message. | |
Detailed Description
TBDFunction Documentation
|
||||||||||||
|
Log a "critical" warning.
CX_LOG_LEVEL_CRITICAL, as specified by the format string format and the following list of arguments, via the installed log handler.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.
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.
Definition at line 154 of file gimessages.c. Referenced by giraffe_slitgeometry_print(). |
|
||||||||||||
|
Log a warning.
Definition at line 127 of file gimessages.c. Referenced by giraffe_calibrate_flux(), giraffe_extract_spectra(), giraffe_get_mode(), giraffe_localize_spectra(), giraffe_parse_spectrum_selection(), and giraffe_reconstruction_build(). |
