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

Abstract logger class, base for any custom/specific loggers.
Afficher le fichier Open project: aws/aws-sdk-net

Méthodes publiques

Méthode 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 méthode

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

DebugFormat() public abstract méthode

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

Error() public abstract méthode

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

Flush() public abstract méthode

Flushes the logger contents.
public abstract Flush ( ) : void
Résultat void

InfoFormat() public abstract méthode

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

InternalLogger() public méthode

public InternalLogger ( Type declaringType ) : System
declaringType System.Type
Résultat System