IAllocationFreeLogger interface¶
Defined in
Namespace: Splat
Assembly: Splat.Logging.dll
Full name: Splat.IAllocationFreeLogger
Modifiers: public abstract
Summary¶
An allocation free logger which wraps all the possible logging methods available. Often not needed for your own loggers. A WrappingFullLogger will wrap simple loggers into a full logger.
Applies to
net10.0, net10.0-browserwasm1.0, net10.0-desktop1.0, net9.0, net9.0-browserwasm1.0, net9.0-desktop1.0, net8.0, net8.0-ios17.5, net8.0-maccatalyst17.5, net8.0-macos14.2, net8.0-macos14.5, net8.0-tvos17.2, netstandard2.1, net462, net481
Class hierarchy
classDiagram
class IAllocationFreeLogger
class IAllocationFreeErrorLogger {
<>
}
IAllocationFreeErrorLogger <|.. IAllocationFreeLogger
class ILogger {
<>
}
ILogger <|.. IAllocationFreeLogger
Implements: IAllocationFreeErrorLogger, ILogger
Properties¶
| Name | Summary |
|---|---|
| IsDebugEnabled | Gets a value indicating whether the logger currently emits debug logs. |
| IsInfoEnabled | Gets a value indicating whether the logger currently emits information logs. |
| IsWarnEnabled | Gets a value indicating whether the logger currently emits warning logs. |
| IsErrorEnabled | Gets a value indicating whether the logger currently emits error logs. |
| IsFatalEnabled | Gets a value indicating whether the logger currently emits fatal logs. |
Methods¶
| Name | Summary |
|---|---|
| Debug | Emits a message using formatting to the debug log. |
| Info | Emits a message using formatting to the info log. |
| Warn | Emits a message using formatting to the warning log. |
| Error | Emits a message using formatting to the error log. |
| Fatal | Emits a message using formatting to the fatal log. |