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

Abstract logger class, base for any custom/specific loggers.
Mostra file Open project: aws/aws-sdk-net

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

Flushes the logger contents.

InfoFormat ( string message ) : void

Simple wrapper around the log4net InfoFormat method.

InternalLogger ( Type declaringType ) : System

Method Details

Debug() public abstract method

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

DebugFormat() public abstract method

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

Error() public abstract method

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

Flush() public abstract method

Flushes the logger contents.
public abstract Flush ( ) : void
return void

InfoFormat() public abstract method

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

InternalLogger() public method

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