Click or drag to resize

ILog Interface

Provides a set of methods to log messages.

Namespace:  Resto.Front.Api
Assembly:  Resto.Front.Api.V6 (in Resto.Front.Api.V6.dll)
Syntax
C#
public interface ILog

The ILog type exposes the following members.

Methods
  NameDescription
Public methodError(String)
Logs a message with the Error level.
Public methodError(String, Exception)
Logs a message with the Error level including the stack trace of the exception passed as a parameter.
Public methodErrorFormat(String, Object)
Logs a formatted message string with the Error level.
Public methodErrorFormat(String, Object)
Logs a formatted message string with the Error level.
Public methodErrorFormat(String, Object, Object)
Logs a formatted message string with the Error level.
Public methodErrorFormat(String, Object, Object, Object)
Logs a formatted message string with the Error level.
Public methodInfo
Logs a message with the Info level.
Public methodInfoFormat(String, Object)
Logs a formatted message string with the Info level.
Public methodInfoFormat(String, Object)
Logs a formatted message string with the Info level.
Public methodInfoFormat(String, Object, Object)
Logs a formatted message string with the Info level.
Public methodInfoFormat(String, Object, Object, Object)
Logs a formatted message string with the Info level.
Public methodWarn
Logs a message with the Warn level.
Public methodWarnFormat(String, Object)
Logs a formatted message string with the Warn level.
Public methodWarnFormat(String, Object)
Logs a formatted message string with the Warn level.
Public methodWarnFormat(String, Object, Object)
Logs a formatted message string with the Warn level.
Public methodWarnFormat(String, Object, Object, Object)
Logs a formatted message string with the Warn level.
Top
See Also