void eels_log(eels_handle_t handle, int level, char *fmt, ...);
Description
Submit the given buffer contents to the EELS
logging subsystem. This routine requires that the buffer
contents are specified in a printf like format.
This is similar to the existing cmn_err mechanism
that implements its own printf formatting. The level
parameter provides an indicator of the event severity, similar
to the current cmn_err level. The proposed values
for level are:
EELS_INFO
Informational messages only. For example, initial driver
configuration messages.
EELS_WARN
Recoverable error messages. For example, a recovered ECC
error on a disk drive.
EELS_ERROR
Unrecoverable ``hard'' errors. Information may have been
lost as a result.
EELS_PANIC
System is in an unmaintainable state. This message will be dispatched
to the EELS logging database and the system will be stopped
and a system image dumped to the configured dump device.