Skip to content

d3644139 ed93 d2f4 bdda 0e38a38ba097

Axel Kesseler edited this page Mar 1, 2023 · 2 revisions

LogLevelFatalExtension.Fatal(TContext) Method (ILogger(TContext), String, ValueTuple(String, Object)[])

This method writes the message for current TContext into the logger using Fatal as logging level.

Namespace: Plexdata.LogWriter.Extensions
Assembly: Plexdata.LogWriter.Abstraction (in Plexdata.LogWriter.Abstraction.dll) Version: 1.0.7.1

Syntax

C#

public static void Fatal<TContext>(
	this ILogger<TContext> logger,
	string message,
	params (string , Object )[] details
)

Parameters

 

logger
Type: Plexdata.LogWriter.Abstraction.ILogger(TContext)
The logger used to write the message.
message
Type: System.String
The message to be written.
details
Type: System.ValueTuple(String, Object)[]
An optional list of label-value-pair combinations containing additional information.

Type Parameters

 

TContext
The type to get the logging context from. Such a context might be a class and shall help to find out the source that causes a particular logging message.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILogger(TContext). 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).

Remarks

Be aware, nothing will happen if logger is null or if message is null, empty or consists only of whitespaces.

See Also

Reference

LogLevelFatalExtension Class
Fatal Overload
Plexdata.LogWriter.Extensions Namespace

Clone this wiki locally