Akka.Event.BusLogging.NotifyDebug C# (CSharp) Method

NotifyDebug() protected method

Publishes the the debug message onto the LoggingBus.
protected NotifyDebug ( object message ) : void
message object The debug message.
return void
        protected override void NotifyDebug(object message)
        {
            _bus.Publish(new Debug(_logSource, _logClass, message));
        }
    }