All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.util.logging.events.EventLogLevel Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.util.logging.events;

import org.jboss.logging.Logger.Level;

/**
 * EventLogLevel.
 *
 * @author Tristan Tarrant
 * @since 8.2
 */
public enum EventLogLevel {
   INFO(Level.INFO), WARN(Level.WARN), ERROR(Level.ERROR), FATAL(Level.FATAL);

   private final Level loggerLevel;

   EventLogLevel(Level loggerLevel) {
      this.loggerLevel = loggerLevel;
   }

   public Level toLoggerLevel() {
      return loggerLevel;
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy