Akka.Event.LoggingAdapterBase.Error C# (CSharp) Method

Error() public method

public Error ( Exception cause, string format ) : void
cause System.Exception
format string
return 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