Click or drag to resize
BaseLogger Class

Note: This API is now obsolete.

Logger base class. Provides functionality for the handling of log messages within the SharePoint ULS trace log.
Inheritance Hierarchy
SystemObject
  Colygon.MatchPoint.Common.LoggingBaseLogger

Namespace: Colygon.MatchPoint.Common.Logging
Assembly: Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2013.11.0.0
Syntax
C#
[ObsoleteAttribute]
public abstract class BaseLogger

The BaseLogger type exposes the following members.

Constructors
  NameDescription
Protected methodBaseLogger
Initializes a new instance of the BaseLogger class
Top
Properties
  NameDescription
Public propertyIsDebugEnabled
Returns true if the trace severity is configured as 'Monitorable'.
Public propertyIsErrorEnabled
Returns true if the trace severity is configured as 'Unexpected'.
Public propertyIsInfoEnabled
Returns true if the trace severity is configured as 'Medium'.
Public propertyIsTraceEnabled
Returns true if the trace severity is configured as 'Verbose'.
Public propertyIsWarnEnabled
Returns true if the trace severity is configured as 'High'.
Top
Methods
  NameDescription
Public methodDebug
Logs a debug message.
Public methodDebugException
Writes an exception resulting from an unusual code path and actions that should be monitored to the trace log.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodError
Logs an error message.
Public methodErrorException
Writes an 'unexpected' exception to the trace log.
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Protected methodStatic memberFormatExceptionMessage
Returns a formatted string that represents the specified exception and message properties.
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInfo
Logs an info message.
Public methodInfoException
Writes an exception with medium-level priority to the trace log.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodTrace
Logs a trace message.
Public methodTraceException
Writes an exception with low-level priority to the trace log.
Public methodWarn
Logs a warning.
Public methodWarnException
Writes an exception with high-level priority to the trace log.
Top
Fields
  NameDescription
Protected fieldCategory
Specifies the category and severity for messages that this logger writes.
Top
See Also