Duality.Log.WriteError C# (CSharp) Method

WriteError() public method

Writes a new error log entry.
public WriteError ( string format ) : void
format string
return void
        public void WriteError(string format, params object[] obj)
        {
            this.Write(LogMessageType.Error, this.FormatMessage(format, obj), this.FindContext(obj));
        }