LoggerExtensions.Log Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
Formats and writes a log message at the specified log level.
public:
[System::Runtime::CompilerServices::Extension]
static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, message As String, ParamArray args As Object())
Parameters
- 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
Log(ILogger, LogLevel, EventId, String, Object[])
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
Formats and writes a log message at the specified log level.
public:
[System::Runtime::CompilerServices::Extension]
static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Microsoft::Extensions::Logging::EventId eventId, System::String ^ message, ... cli::array <System::Object ^> ^ args);
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);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Microsoft.Extensions.Logging.EventId * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, eventId As EventId, message As String, ParamArray args As Object())
Parameters
- 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
Log(ILogger, LogLevel, Exception, String, Object[])
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
Formats and writes a log message at the specified log level.
public:
[System::Runtime::CompilerServices::Extension]
static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
public static void Log (this Microsoft.Extensions.Logging.ILogger logger, Microsoft.Extensions.Logging.LogLevel logLevel, Exception? exception, string? message, params object?[] args);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Exception * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, exception As Exception, message As String, ParamArray args As Object())
Parameters
- 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
Log(ILogger, LogLevel, EventId, Exception, String, Object[])
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
- Source:
- LoggerExtensions.cs
Formats and writes a log message at the specified log level.
public:
[System::Runtime::CompilerServices::Extension]
static void Log(Microsoft::Extensions::Logging::ILogger ^ logger, Microsoft::Extensions::Logging::LogLevel logLevel, Microsoft::Extensions::Logging::EventId eventId, Exception ^ exception, System::String ^ message, ... cli::array <System::Object ^> ^ args);
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);
static member Log : Microsoft.Extensions.Logging.ILogger * Microsoft.Extensions.Logging.LogLevel * Microsoft.Extensions.Logging.EventId * Exception * string * obj[] -> unit
<Extension()>
Public Sub Log (logger As ILogger, logLevel As LogLevel, eventId As EventId, exception As Exception, message As String, ParamArray args As Object())
Parameters
- 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