Click or drag to resize
LoggingAdapter Interface
Capable of logging

Namespace: Akka.Event
Assembly: Akka (in Akka.dll) Version: 0.8.0.0 (0.8.0.0)
Syntax
public interface LoggingAdapter

The LoggingAdapter type exposes the following members.

Methods
  NameDescription
Public methodDebug
Logs a message with the Debug level.
Public methodError(String, Object)
Logs a message with the Error level.
Public methodError(Exception, String, Object)
Logs a message with the Error level.
Public methodInfo
Logs a message with the Info level.
Public methodIsEnabled
Returns true if the specified level is enabled.
Public methodLog
Logs a message with the specified level.
Public methodWarn Obsolete.
Public methodWarning
Logs a message with the Warning level.
Top
Properties
  NameDescription
Public propertyIsDebugEnabled
Returns true if Debug level is enabled.
Public propertyIsErrorEnabled
Returns true if Error level is enabled.
Public propertyIsInfoEnabled
Returns true if Info level is enabled.
Public propertyIsWarningEnabled
Returns true if Warning level is enabled.
Top
See Also