Abstractions.Logging.LibraryLogging.Error C# (CSharp) Method

Error() public static method

public static Error ( string message ) : void
message string
return void
        public static void Error(string message, params object[] args)
        {
            if (ErrorEvent != null)
                ErrorEvent(message, args);
        }