C# Class Amazon.Runtime.Internal.Util.InternalLog4netLogger

Logger wrapper for reflected log4net logging methods.
Inheritance: InternalLogger
Mostrar archivo Open project: scopely/aws-sdk-net Class Usage Examples

Public Methods

Method Description
Debug ( Exception exception, string messageFormat ) : void

Simple wrapper around the log4net Debug method.

DebugFormat ( string message ) : void

Simple wrapper around the log4net DebugFormat method.

Error ( Exception exception, string messageFormat ) : void

Simple wrapper around the log4net Error method.

Flush ( ) : void
InfoFormat ( string message ) : void

Simple wrapper around the log4net InfoFormat method.

InternalLog4netLogger ( Type declaringType ) : System

Private Methods

Method Description
loadStatics ( ) : void

This should be a one time call to use reflection to find all the types and methods needed for the logging API.

Method Details

Debug() public method

Simple wrapper around the log4net Debug method.
public Debug ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
return void

DebugFormat() public method

Simple wrapper around the log4net DebugFormat method.
public DebugFormat ( string message ) : void
message string
return void

Error() public method

Simple wrapper around the log4net Error method.
public Error ( Exception exception, string messageFormat ) : void
exception System.Exception
messageFormat string
return void

Flush() public method

public Flush ( ) : void
return void

InfoFormat() public method

Simple wrapper around the log4net InfoFormat method.
public InfoFormat ( string message ) : void
message string
return void

InternalLog4netLogger() public method

public InternalLog4netLogger ( Type declaringType ) : System
declaringType System.Type
return System