Class LogManager
Main class for logging management.
Inherited Members
Namespace: Dicom.Log
Assembly: cs.temp.dll.dll
Syntax
public abstract class LogManager
Methods
GetLogger(String)
Get logger.
Declaration
public static Logger GetLogger(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| String | name | Classifier name, typically namespace or type name. |
Returns
| Type | Description |
|---|---|
| Logger | Logger from the current log manager implementation. |
GetLoggerImpl(String)
Get logger from the current log manager implementation.
Declaration
protected abstract Logger GetLoggerImpl(string name)
Parameters
| Type | Name | Description |
|---|---|---|
| String | name | Classifier name, typically namespace or type name. |
Returns
| Type | Description |
|---|---|
| Logger | Logger from the current log manager implementation. |
SetImplementation(LogManager)
Set the log manager implementation to use for logging.
Declaration
public static void SetImplementation(LogManager impl)
Parameters
| Type | Name | Description |
|---|---|---|
| LogManager | impl |