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

NotifyInfo() protected method

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