C# Class Composite.Core.Log

Provide write access to the Orckestra CMS log. Note that 'verbose' messages are typically only shown in run-time log viewers.
Show file Open project: Orckestra/C1-CMS

Public Methods

Method Description
LogCritical ( string title, Exception exception ) : void

Logs a 'critical' message to the Orckestra CMS log. You should only use 'critical' when a major system failure occur.

LogCritical ( string title, string message ) : void

Logs a 'critical' message to the Orckestra CMS log. You should only use 'critical' when a major system failure occur.

LogError ( string title, Exception exception ) : void

Logs a 'error' message to the Orckestra CMS log.

LogError ( string title, string message ) : void

Logs a 'error' message to the Orckestra CMS log.

LogInformation ( string title, string message ) : void

Logs a 'information' message to the Orckestra CMS log.

LogVerbose ( string title, string message ) : void

Logs a 'verbose' message to the Orckestra CMS log. Verbose messages are typically only shown in developer log viewers.

LogWarning ( string title, Exception exception ) : void

Logs a 'verbose' message to the Orckestra CMS log.

LogWarning ( string title, string message ) : void

Logs a 'warning' message to the Orckestra CMS log.

Method Details

LogCritical() public static method

Logs a 'critical' message to the Orckestra CMS log. You should only use 'critical' when a major system failure occur.
public static LogCritical ( string title, Exception exception ) : void
title string Title of log message
exception System.Exception Exception to log
return void

LogCritical() public static method

Logs a 'critical' message to the Orckestra CMS log. You should only use 'critical' when a major system failure occur.
public static LogCritical ( string title, string message ) : void
title string Title of log message
message string Message to log
return void

LogError() public static method

Logs a 'error' message to the Orckestra CMS log.
public static LogError ( string title, Exception exception ) : void
title string Title of log message
exception System.Exception Exception to log
return void

LogError() public static method

Logs a 'error' message to the Orckestra CMS log.
public static LogError ( string title, string message ) : void
title string Title of log message
message string Message to log
return void

LogInformation() public static method

Logs a 'information' message to the Orckestra CMS log.
public static LogInformation ( string title, string message ) : void
title string Title of log message
message string Message to log
return void

LogVerbose() public static method

Logs a 'verbose' message to the Orckestra CMS log. Verbose messages are typically only shown in developer log viewers.
public static LogVerbose ( string title, string message ) : void
title string Title of log message
message string Message to log
return void

LogWarning() public static method

Logs a 'verbose' message to the Orckestra CMS log.
public static LogWarning ( string title, Exception exception ) : void
title string Title of log message
exception System.Exception Exception to log
return void

LogWarning() public static method

Logs a 'warning' message to the Orckestra CMS log.
public static LogWarning ( string title, string message ) : void
title string Title of log message
message string Message to log
return void