Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migration of unmigrated content due to installation of a new plugin
Znav
nextCustom Loggers
prevLogger Facility

A default logger is instantiated when you create a communicator. The default logger writes its messages to the standard error output. The trace operation accepts a category parameter in addition to the error message; this allows you to separate trace output from different subsystems by sending the output through a filter.

You can obtain the logger that is attached to a communicator using the getLogger operation:

Wiki Markup
{zcode:slice}
module Ice {
    local interface Communicator {
        Logger getLogger();
        // ...
    };
};
{zcode}
Ztop
See Also
Zret
Znav
nextCustom Loggers
prevLogger Facility