Request

Response

    ILogger.Information method

    Logs the specified informational message.

    public void Information(string message, [CallerMemberName] string caller = null)
    
    parameterdescription
    message The message.
    caller The caller.

    Remarks

    This method logs the specified message as an informational message to the application’s log file. The message will be logged with a severity of “Information”. The caller’s name is also logged, which can be helpful for tracking down the source of a problem.

    See Also