C# Class Aspectacular.CallerAopLogger

Provides access to logging functionality for callers of AOP-intercepted functions.
Datei anzeigen Open project: vgribok/Aspectacular

Protected Properties

Property Type Description
log CallLifetimeLog

Protected Methods

Method Description
Log ( EntryType entryType, string optionalKey, string format ) : void

Adds entry to the log held by the proxy.

LogError ( string format ) : void

Shortcut for logging error entries.

LogErrorWithKey ( string optionalKey, string format ) : void

Shortcut for logging error entries.

LogInformation ( string format ) : void

Shortcut for logging information entries.

LogInformationData ( string optionalKey, object data ) : void

Shortcut for logging information entries.

LogInformationWithKey ( string optionalKey, string format ) : void

Shortcut for logging information entries.

LogWarning ( string format ) : void

Shortcut for logging warning entries.

LogWarningWithKey ( string optionalKey, string format ) : void

Shortcut for logging warning entries.

Private Methods

Method Description
CallerAopLogger ( CallLifetimeLog log ) : System

Method Details

Log() protected method

Adds entry to the log held by the proxy.
protected Log ( EntryType entryType, string optionalKey, string format ) : void
entryType EntryType
optionalKey string
format string
return void

LogError() protected method

Shortcut for logging error entries.
protected LogError ( string format ) : void
format string
return void

LogErrorWithKey() protected method

Shortcut for logging error entries.
protected LogErrorWithKey ( string optionalKey, string format ) : void
optionalKey string
format string
return void

LogInformation() protected method

Shortcut for logging information entries.
protected LogInformation ( string format ) : void
format string
return void

LogInformationData() protected method

Shortcut for logging information entries.
protected LogInformationData ( string optionalKey, object data ) : void
optionalKey string
data object
return void

LogInformationWithKey() protected method

Shortcut for logging information entries.
protected LogInformationWithKey ( string optionalKey, string format ) : void
optionalKey string
format string
return void

LogWarning() protected method

Shortcut for logging warning entries.
protected LogWarning ( string format ) : void
format string
return void

LogWarningWithKey() protected method

Shortcut for logging warning entries.
protected LogWarningWithKey ( string optionalKey, string format ) : void
optionalKey string
format string
return void

Property Details

log protected_oe property

protected CallLifetimeLog,Aspectacular log
return CallLifetimeLog