Click or drag to resize

CacheFactoryLogLevel Enumeration

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
The logging level a message must meet or exceed in order to be logged.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public enum LogLevel
Members
  Member nameValueDescription
Always0 It is expected that items with a log level of 0 will always be logged.
Error1 Log level 1 indicates an error.
Warn2 Log level 2 indicates a warning.
Info3 Log level 3 indicates information that should likely be logged.
Debug5 The default logging level is 5, so using the level of 5 will show up in the logs by default as a debug message.
Quiet6 The default logging level is 5, so using a level higher than 5 will be "quiet" by default, meaning that it will not show up in the logs unless the configured logging level is increased.
Max9 The maximum logging level indicator.
See Also