Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
java
java
titleLogging of a Channel Creation
pubic class Channel
...
    if (_statusLogger.isInfoEnabled(cnnectonLogActor))
    {
        _statusLogger.info(connectonLogActor, "ChM-1001 : Channel Created"LogMessages.CHANNEL_CREATE(this));
    }
...

Would result in the following based on the Logging Format Design.

...

Code Block
java
java
titleLogging of a new consumer creation
...
    if (_statusLogger.isInfoEnabled(subscriberActor))
    {
        _statusLogger.info(subscriberActor, "Sub-1001 : Subscription Created"LogMessages.SUBSCRIPTION_CREATE(this));
    }
...

Would result in the following:

...