Akka.Event.BusLogging.NotifyError C# (CSharp) Метод

NotifyError() защищенный Метод

Publishes the error message and exception onto the LoggingBus.
protected NotifyError ( Exception cause, object message ) : void
cause System.Exception The exception that caused this error.
message object The error message.
Результат void
        protected override void NotifyError(Exception cause, object message)
        {
            _bus.Publish(new Error(cause, _logSource, _logClass, message));
        }

Same methods

BusLogging::NotifyError ( object message ) : void