The method `isDebugEnabled()` in the Java class `org.infinispan.util.logging.Log` is used to determine if the `debug` level logging is enabled or not for the current logger instance. If `true` is returned, it means that `debug` level log messages will be outputted by the logger for any log events. On the other hand, if `false` is returned, it indicates that `debug` level logging is disabled and no log events pertaining to the `debug` level will be generated. This method can be useful for developers to check if the logger is set to debug mode before logging any debug statements in their code.
Java Log.isDebugEnabled - 22 examples found. These are the top rated real world Java examples of org.infinispan.util.logging.Log.isDebugEnabled extracted from open source projects. You can rate examples to help us improve the quality of examples.