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