C# Class Catel.Logging.LogExtensions

Exibir arquivo Open project: Catel/Catel Class Usage Examples

Public Methods

Method Description
DebugAndStatus ( this log ) : void

Writes an empty line as debug and status message.

DebugAndStatus ( this log, string messageFormat ) : void

Writes the specified message as debug and status message.

ErrorAndStatus ( this log ) : void

Writes an empty line as error and status message.

ErrorAndStatus ( this log, string messageFormat ) : void

Writes the specified message as error and status message.

InfoAndStatus ( this log ) : void

Writes an empty line as info and status message.

InfoAndStatus ( this log, string messageFormat ) : void

Writes the specified message as info and status message.

Status ( this log ) : void

Writes an empty line as status message.

Status ( this log, string messageFormat ) : void

Writes the specified message as status message.

WarningAndStatus ( this log ) : void

Writes an empty line as warning and status message.

WarningAndStatus ( this log, string messageFormat ) : void

Writes the specified message as warning and status message.

Method Details

DebugAndStatus() public static method

Writes an empty line as debug and status message.
public static DebugAndStatus ( this log ) : void
log this The log.
return void

DebugAndStatus() public static method

Writes the specified message as debug and status message.
public static DebugAndStatus ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void

ErrorAndStatus() public static method

Writes an empty line as error and status message.
public static ErrorAndStatus ( this log ) : void
log this The log.
return void

ErrorAndStatus() public static method

Writes the specified message as error and status message.
public static ErrorAndStatus ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void

InfoAndStatus() public static method

Writes an empty line as info and status message.
public static InfoAndStatus ( this log ) : void
log this The log.
return void

InfoAndStatus() public static method

Writes the specified message as info and status message.
public static InfoAndStatus ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void

Status() public static method

Writes an empty line as status message.
public static Status ( this log ) : void
log this The log.
return void

Status() public static method

Writes the specified message as status message.
public static Status ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void

WarningAndStatus() public static method

Writes an empty line as warning and status message.
public static WarningAndStatus ( this log ) : void
log this The log.
return void

WarningAndStatus() public static method

Writes the specified message as warning and status message.
public static WarningAndStatus ( this log, string messageFormat ) : void
log this The log.
messageFormat string The message format.
return void