Example usage for org.apache.solr.logging LogWatcherConfig LogWatcherConfig

List of usage examples for org.apache.solr.logging LogWatcherConfig LogWatcherConfig

Introduction

In this page you can find the example usage for org.apache.solr.logging LogWatcherConfig LogWatcherConfig.

Prototype

public LogWatcherConfig(boolean enabled, String loggingClass, String watcherThreshold, int watcherSize) 

Source Link

Usage

From source file:org.vootoo.logging.logback.LogbackWatcherTest.java

License:Apache License

@Before
public void setUp() {
    config = new LogWatcherConfig(true, LogbackWatcher.class.getName(), null, 50);
    loader = new SolrResourceLoader(Paths.get("."), Runtime.getRuntime().getClass().getClassLoader(), null);
}