SubServers-2/SubServers.Bungee/src/net/ME1312/SubServers/Bungee/Host/SubLogFilter.java
ME1312 39fa66c828 SubCreator Console Support & Aethstetic Changes
You can now popout SubCreator with SubServers.Console: /popoutc
2017-01-10 22:23:29 -05:00

29 lines
546 B
Java

package net.ME1312.SubServers.Bungee.Host;
import java.util.logging.Level;
/**
* SubServer Log Filter Layout Class
*/
public interface SubLogFilter {
/**
* Called when the logging has started
*/
void start();
/**
* Determine if this message should be logged
*
* @param level Log Level
* @param message Message to Log
* @return If this message should be logged
*/
boolean log(Level level, String message);
/**
* Called when the logging has stopped
*/
void stop();
}