This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.apache.logging.log4j.core.config.plugins.Plugin; | |
import org.apache.logging.log4j.core.config.plugins.PluginAttribute; | |
import org.apache.logging.log4j.core.config.plugins.PluginFactory; | |
// Register the plugin to allow it to be used later | |
@Plugin(name = "DebounceFilter", category = "Core", elementType = "filter", printObject = true) | |
public class DebounceFilterPlugin extends DebounceFilter { | |
// Factory method for creating the filter from configuration | |
@PluginFactory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
__pycache__ |