-
Notifications
You must be signed in to change notification settings - Fork 0
897c2ca9 9b6d f33f 7568 d4543ec4ca4b
This method writes the message and the exception into the logger using Fatal as logging level.
Namespace: Plexdata.LogWriter.Extensions
Assembly: Plexdata.LogWriter.Abstraction (in Plexdata.LogWriter.Abstraction.dll) Version: 1.0.6.1
C#
public static void Fatal(
this ILogger logger,
string message,
Exception exception,
params (string , Object )[] details
)
- logger
- Type: Plexdata.LogWriter.Abstraction.ILogger
The logger used to write the message. - message
- Type: System.String
The message to be written. - exception
- Type: System.Exception
The exception to be written. - details
- Type: System.ValueTuple(String, Object)[]
An optional list of label-value-pair combinations containing additional information.
In Visual Basic and C#, you can call this method as an instance method on any object of type ILogger. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Be aware, nothing will happen if logger is null
or if message is null
, empty or consists only of whitespaces or if exception is null
. In case of the message is invalid but the exception is valid, the message text is taken from the exception instead.
LogLevelFatalExtension Class
Fatal Overload
Plexdata.LogWriter.Extensions Namespace