Class LogManager
Class responsible for creating new ILogger instances.
Inheritance
Namespace: EPiServer.Logging
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public class LogManager : Object
Constructors
LogManager()
Initializes a new instance of the Log
Declaration
public LogManager()
Fields
BoundaryType
Gets the type of the class that represents the boundary of the logging system.
Declaration
public static readonly Type BoundaryType
Field Value
Type | Description |
---|---|
System. |
Remarks
This can be used by certain logging framework to find and log the correct stack information.
Properties
Instance
Gets or sets the current Log
Declaration
public static LogManager Instance { get; set; }
Property Value
Type | Description |
---|---|
Log |
Remarks
This property is guaranteed to always return a Log
LoggerFactory
Delegate that is used to create a ILogger
Declaration
public static Func<ILoggerFactory> LoggerFactory { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
AddFactory(ILoggerFactory)
Adds a ILogger
Declaration
public virtual void AddFactory(ILoggerFactory factory)
Parameters
Type | Name | Description |
---|---|---|
ILogger |
factory | The factory that should be used. |
Remarks
The basic Log
Adding a new factory will not affect any ILogger instances that has been created and used already.
Exceptions
Type | Condition |
---|---|
System. |
factory |
GetLogger()
Declaration
public static ILogger GetLogger()
Returns
Remarks
As this method uses the stack and some reflection it is not recommended to use this from other than initializing static fields.
GetLogger(String)
Gets a ILogger instance for the provided name.
Declaration
public virtual ILogger GetLogger(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the logger to get. |
Returns
Remarks
This method is guaranteed to always return an instance.
GetLogger(Type)
Declaration
public static ILogger GetLogger(Type type)
Parameters
Type | Name | Description |
---|---|---|
System. |
type | The type that the logger should be created for. |
Returns
Exceptions
Type | Condition |
---|---|
System. |
type |