001package org.slf4j.spi;
002
003import org.slf4j.event.LoggingEvent;
004
005/**
006 * A logger capable of logging from org.slf4j.event.LoggingEvent implements this interface.
007 * 
008 * @author Ceki Gulcu
009 * @since 2.0.0
010 */
011public interface LoggingEventAware {
012    void log(LoggingEvent event);
013}