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

NotifyWarning() protected method

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