ILogger InterfaceHazelcast .Net Client Class Library
The Hazelcast logging interface.

Namespace: Hazelcast.Logging
Assembly: Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.7
Syntax

public interface ILogger

The ILogger type exposes the following members.

Methods

  NameDescription
Public methodFinest(Exception)
Logs a throwable at LogLevel.Finest . The message of the Throwable will be the message.
Public methodFinest(String)
Logs a message at LogLevel.Finest .
Public methodFinest(String, Exception)
Logs message with associated throwable information at LogLevel.Finest .
Public methodGetLevel
Gets the logging Level.
Public methodInfo
Logs a message at LogLevel.Info .
Public methodIsFinestEnabled
Checks if the LogLevel.Finest is enabled.
Public methodIsLoggable
Checks if a message at the provided level is going to be logged by this logger.
Public methodLog(LogLevel, String)
Logs a message at the provided Level.
Public methodLog(LogLevel, String, Exception)
Logs message with associated throwable information at the provided level.
Public methodSevere(Exception)
Logs a throwable at LogLevel.Severe . The message of the Throwable will be the message.
Public methodSevere(String)
Logs a message at LogLevel.Severe .
Public methodSevere(String, Exception)
Logs message with associated throwable information at LogLevel.Severe .
Public methodWarning(Exception)
Logs a throwable at LogLevel.Warning . The message of the Throwable will be the message.
Public methodWarning(String)
Logs a message at LogLevel.Warning .
Public methodWarning(String, Exception)
Logs message with associated throwable information at LogLevel.Warning .
Top
Remarks

The Hazelcast logging interface. The reason if its existence is that Hazelcast doesn't want any dependencies on concrete logging frameworks so it creates it own meta logging framework where existing logging frameworks can be placed behind.
See Also

Reference