LoggerExtensions.Log Method

Definition

Overloads

Log(ILogger, LogLevel, String, Object[])

Formats and writes a log message at the specified log level.

Log(ILogger, LogLevel, EventId, String, Object[])

Formats and writes a log message at the specified log level.

Log(ILogger, LogLevel, Exception, String, Object[])

Formats and writes a log message at the specified log level.

Log(ILogger, LogLevel, EventId, Exception, String, Object[])

Formats and writes a log message at the specified log level.

Log(ILogger, LogLevel, String, Object[])

Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs

Formats and writes a log message at the specified log level.

C#
public static void Log(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, string? message, params object?[] args);

Parameters

logger
ILogger

The ILogger to write to.

logLevel
LogLevel

Entry will be written on this level.

message
String

Format string of the log message.

args
Object[]

An object array that contains zero or more objects to format.

Applies to

.NET 10 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided)

Log(ILogger, LogLevel, EventId, String, Object[])

Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs

Formats and writes a log message at the specified log level.

C#
public static void Log(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, string? message, params object?[] args);

Parameters

logger
ILogger

The ILogger to write to.

logLevel
LogLevel

Entry will be written on this level.

eventId
EventId

The event id associated with the log.

message
String

Format string of the log message.

args
Object[]

An object array that contains zero or more objects to format.

Applies to

.NET 10 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided)

Log(ILogger, LogLevel, Exception, String, Object[])

Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs

Formats and writes a log message at the specified log level.

C#
public static void Log(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Exception? exception, string? message, params object?[] args);

Parameters

logger
ILogger

The ILogger to write to.

logLevel
LogLevel

Entry will be written on this level.

exception
Exception

The exception to log.

message
String

Format string of the log message.

args
Object[]

An object array that contains zero or more objects to format.

Applies to

.NET 10 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided)

Log(ILogger, LogLevel, EventId, Exception, String, Object[])

Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs
Source:
LoggerExtensions.cs

Formats and writes a log message at the specified log level.

C#
public static void Log(this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Microsoft.Extensions.Logging.EventId eventId, Exception? exception, string? message, params object?[] args);

Parameters

logger
ILogger

The ILogger to write to.

logLevel
LogLevel

Entry will be written on this level.

eventId
EventId

The event id associated with the log.

exception
Exception

The exception to log.

message
String

Format string of the log message.

args
Object[]

An object array that contains zero or more objects to format.

Applies to

.NET 10 (package-provided) e outras versões
Produto Versões
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Standard 2.0 (package-provided)