| InternalLoggerDebugTArgument1 Method (String, TArgument1) |
Logs the specified message without an Exception at the Trace level.
Namespace:
NLog.Common
Assembly:
NLog (in NLog.dll) Version: 5.3.4+73d83d3161d31288ca5c554cc50d27b6bed5f28b
Syntax public static void Debug<TArgument1>(
string message,
TArgument1 arg0
)
Public Shared Sub Debug(Of TArgument1) (
message As String,
arg0 As TArgument1
)
Dim message As String
Dim arg0 As TArgument1
InternalLogger.Debug(message, arg0)
static member Debug :
message : string *
arg0 : 'TArgument1 -> unit
Parameters
- message
- Type: SystemString
Message which may include positional parameters. - arg0
- Type: TArgument1
Argument {0} to the message.
Type Parameters
- TArgument1
- The type of the first argument.
See Also