Open.Core.LogWriter.Write C# (CSharp) Method

Write() public method

public Write ( object message, string backgroundColor ) : void
message object
backgroundColor string
return void
        public void Write(object message, string backgroundColor)
        {
            if (!CanWrite) return;
            WriteInternal(message, null, backgroundColor, null);
        }