Click or drag to resize

ILoggingService Interface

Interface to a logging service which typically logs some events to a log file.

Namespace: Altaxo.Main.Services
Assembly: AltaxoBase (in AltaxoBase.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public interface ILoggingService

The ILoggingService type exposes the following members.

Properties
 NameDescription
Public propertyIsDebugEnabled Gets a value indicating whether debug logging is enabled.
Public propertyIsErrorEnabled Gets a value indicating whether error logging is enabled.
Public propertyIsFatalEnabled Gets a value indicating whether fatal logging is enabled.
Public propertyIsInfoEnabled Gets a value indicating whether informational logging is enabled.
Public propertyIsWarnEnabled Gets a value indicating whether warning logging is enabled.
Top
Methods
 NameDescription
Public methodDebug Writes a debug message.
Public methodDebugFormatted Writes a formatted debug message.
Public methodError(Object) Writes an error message.
Public methodError(Object, Exception) Writes an error message together with an exception.
Public methodErrorFormatted Writes a formatted error message.
Public methodFatal(Object) Writes a fatal message.
Public methodFatal(Object, Exception) Writes a fatal message together with an exception.
Public methodFatalFormatted Writes a formatted fatal message.
Public methodInfo Writes an informational message.
Public methodInfoFormatted Writes a formatted informational message.
Public methodWarn(Object) Writes a warning message.
Public methodWarn(Object, Exception) Writes a warning message together with an exception.
Public methodWarnFormatted Writes a formatted warning message.
Top
See Also