imBMW.Logger.Error C# (CSharp) Method

Error() public static method

public static Error ( Exception ex, string message ) : void
ex System.Exception
message string
return void
        public static void Error(Exception ex, string message)
        {
            OnLogged(new LogItem
            {
                Priority = LogPriority.Error,
                PriorityLabel = "ERR",
                Message = message,
                Exception = ex
            });
        }