1 package org.slf4j.spi; 2 3 import org.slf4j.event.LoggingEvent; 4 5 /** 6 * A logger capable of logging from org.slf4j.event.LoggingEvent implements this interface. 7 * 8 * @author Ceki Gulcu 9 * @since 2.0.0 10 */ 11 public interface LoggingEventAware { 12 void log(LoggingEvent event); 13 }