Duality.Log.WriteWarning C# (CSharp) Method

WriteWarning() public method

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