LoggerExtensions.Log 方法

定義

多載

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

在指定的記錄層級格式化及寫入記錄訊息。

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

在指定的記錄層級格式化及寫入記錄訊息。

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

在指定的記錄層級格式化及寫入記錄訊息。

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

在指定的記錄層級格式化及寫入記錄訊息。

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

在指定的記錄層級格式化及寫入記錄訊息。

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);
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())

參數

logger
ILogger

要寫入的目標 ILogger

logLevel
LogLevel

項目會在此層級寫入。

message
String

格式化記錄訊息的字串。

args
Object[]

物件陣列,包含零或多個要格式化的物件。

適用於

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

在指定的記錄層級格式化及寫入記錄訊息。

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);
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())

參數

logger
ILogger

要寫入的目標 ILogger

logLevel
LogLevel

項目會在此層級寫入。

eventId
EventId

與記錄建立關聯的事件識別碼。

message
String

格式化記錄訊息的字串。

args
Object[]

物件陣列,包含零或多個要格式化的物件。

適用於

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

在指定的記錄層級格式化及寫入記錄訊息。

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);
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())

參數

logger
ILogger

要寫入的目標 ILogger

logLevel
LogLevel

項目會在此層級寫入。

exception
Exception

要記錄的例外狀況。

message
String

格式化記錄訊息的字串。

args
Object[]

物件陣列,包含零或多個要格式化的物件。

適用於

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

在指定的記錄層級格式化及寫入記錄訊息。

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);
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())

參數

logger
ILogger

要寫入的目標 ILogger

logLevel
LogLevel

項目會在此層級寫入。

eventId
EventId

與記錄建立關聯的事件識別碼。

exception
Exception

要記錄的例外狀況。

message
String

格式化記錄訊息的字串。

args
Object[]

物件陣列,包含零或多個要格式化的物件。

適用於