Akka.Event.LoggingAdapterBase.Error C# (CSharp) Метод

Error() публичный Метод

public Error ( Exception cause, string format ) : void
cause System.Exception
format string
Результат void
        public void Error(Exception cause, string format, params object[] args)
        {
            if (!IsErrorEnabled) 
                return;

            if (args == null || args.Length == 0)
            {
                NotifyError(cause, format);
            }
            else
            {
                NotifyError(cause, new LogMessage(_logMessageFormatter, format, args));
            }
        }

Same methods

LoggingAdapterBase::Error ( string format ) : void