WinFwk.UIModules.UIModule.Log C# (CSharp) Method

Log() public method

public Log ( string text, Exception exception ) : void
text string
exception System.Exception
return void
        public void Log(string text, Exception exception)
        {
            MessageBus.SendMessage(new LogMessage(this, text, exception));
        }

Same methods

UIModule::Log ( string text, LogLevelType logLevel = LogLevelType.Info ) : void