 | ILoggerLog Method (LogLevel, String, Exception) |
Logs message with associated throwable information at the provided level.
Namespace:
Hazelcast.Logging
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.9.4
Syntaxvoid Log(
LogLevel level,
string message,
Exception thrown
)
Sub Log (
level As LogLevel,
message As String,
thrown As Exception
)
void Log(
LogLevel level,
String^ message,
Exception^ thrown
)
abstract Log :
level : LogLevel *
message : string *
thrown : Exception -> unit
Parameters
- level
- Type: Hazelcast.LoggingLogLevel
The logging level of the message - message
- Type: SystemString
the message to log - thrown
- Type: SystemException
the Throwable associated to the message.
RemarksLogs message with associated throwable information at the provided level.
See Also