LoggerExtensions.Verbose 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
Verbose(Logger, String, Object[]) |
Writes a log entry at the Verbose severity level. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info. |
Verbose(Logger, Int32, String, Object[]) |
Writes a log entry at the Verbose severity level, with the specified log id code. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info. |
Verbose(Logger, String) |
Writes a log entry at the Verbose severity level. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info. |
Verbose(Logger, Int32, String) |
Writes a log entry at the Verbose severity level, with the specified log id code. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info. |
Verbose(Logger, String, Object[])
Writes a log entry at the Verbose severity level. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info.
public static void Verbose (this Orleans.Runtime.Logger logger, string format, params object[] args);
static member Verbose : Orleans.Runtime.Logger * string * obj[] -> unit
<Extension()>
Public Sub Verbose (logger As Logger, format As String, ParamArray args As Object())
Parameters
- logger
- Logger
The logger
- format
- String
A standard format string, suitable for String.Format.
- args
- Object[]
Any arguments to the format string.
Applies to
Verbose(Logger, Int32, String, Object[])
Writes a log entry at the Verbose severity level, with the specified log id code. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info.
public static void Verbose (this Orleans.Runtime.Logger logger, int logCode, string format, params object[] args);
static member Verbose : Orleans.Runtime.Logger * int * string * obj[] -> unit
<Extension()>
Public Sub Verbose (logger As Logger, logCode As Integer, format As String, ParamArray args As Object())
Parameters
- logger
- Logger
The logger
- logCode
- Int32
The log code associated with this message.
- format
- String
A standard format string, suitable for String.Format.
- args
- Object[]
Any arguments to the format string.
Applies to
Verbose(Logger, String)
Writes a log entry at the Verbose severity level. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info.
public static void Verbose (this Orleans.Runtime.Logger logger, string message);
static member Verbose : Orleans.Runtime.Logger * string -> unit
<Extension()>
Public Sub Verbose (logger As Logger, message As String)
Parameters
- logger
- Logger
The logger
- message
- String
The log message.
Applies to
Verbose(Logger, Int32, String)
Writes a log entry at the Verbose severity level, with the specified log id code. Verbose is suitable for debugging information that should usually not be logged in production. Verbose is lower than Info.
public static void Verbose (this Orleans.Runtime.Logger logger, int logCode, string message);
static member Verbose : Orleans.Runtime.Logger * int * string -> unit
<Extension()>
Public Sub Verbose (logger As Logger, logCode As Integer, message As String)
Parameters
- logger
- Logger
The logger
- logCode
- Int32
The log code associated with this message.
- message
- String
The log message.