API Reference
Class
LoggingMessages
Provides centralized access to logging configuration and the internal logger instance
Inheritance
- Object
- LoggingMessages
Constructors
public LoggingMessages() #Methods
public static Void LogError(Exception exception, String message = null, params Object[] args) #Returns:
VoidLogs an error using the internal logger.
Parameters
- exception System.Exception
- message System.String = null
- args System.Object[]
public static Void LogWarning(Exception exception, String message = null, params Object[] args) #Returns:
VoidLogs a warning using the internal logger.
Parameters
- exception System.Exception
- message System.String = null
- args System.Object[]
Inherited Methods
Properties
public static Boolean Error { get; set; } #Gets or sets whether error messages should be written to console
public static Boolean Verbose { get; set; } #Gets or sets whether verbose messages should be written to console
public static Boolean Warning { get; set; } #Gets or sets whether warning messages should be written to console
public static Boolean Progress { get; set; } #Gets or sets whether progress messages should be written to console
public static Boolean Debug { get; set; } #Gets or sets whether debug messages should be written to console
public static Boolean Information { get; set; } #Gets or sets whether information messages should be written to console
Fields
public static InternalLogger Logger #Static instance of the internal logger used throughout the application