local interface Logger
The Ice message logger. Applications can provide their own logger by implementing this interface and installing it in a communicator.
Communicator::getLogger, Communicator::setLogger
Log error messages.
Log trace messages.
Log warning messages.
void error(string message);
The error message to log.
warning
void trace(string category, string message);
The trace category.
The trace message to log.
void warning(string message);
The warning message to log.
error