Uses of Class
org.infinispan.util.logging.events.EventLogCategory
-
Packages that use EventLogCategory Package Description org.infinispan.util.logging.events -
-
Uses of EventLogCategory in org.infinispan.util.logging.events
Methods in org.infinispan.util.logging.events that return EventLogCategory Modifier and Type Method Description EventLogCategory
EventLog. getCategory()
static EventLogCategory
EventLogCategory. valueOf(String name)
Returns the enum constant of this type with the specified name.static EventLogCategory[]
EventLogCategory. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.infinispan.util.logging.events with parameters of type EventLogCategory Modifier and Type Method Description default void
EventLogger. error(EventLogCategory category, String message)
Logs a message to the event log using theEventLogLevel.ERROR
severitydefault void
EventLogger. fatal(EventLogCategory category, String message)
Logs a message to the event log using theEventLogLevel.FATAL
severitydefault void
EventLogger. info(EventLogCategory category, String message)
Logs a message to the event log using theEventLogLevel.INFO
severityvoid
EventLogger. log(EventLogLevel level, EventLogCategory category, String message)
Logs a message to the event log with the specified leveldefault void
EventLogger. warn(EventLogCategory category, String message)
Logs a message to the event log using theEventLogLevel.WARN
severityMethod parameters in org.infinispan.util.logging.events with type arguments of type EventLogCategory Modifier and Type Method Description List<EventLog>
EventLogger. getEvents(Instant start, int count, Optional<EventLogCategory> category, Optional<EventLogLevel> level)
Retrieves the event logs from the cluster within the specified range
-