Package ch.qos.logback.core.rolling.helper

Examples of ch.qos.logback.core.rolling.helper.DefaultArchiveRemover


    TimeBasedFileNamingAndTriggeringPolicyBase<E> {

  @Override
  public void start() {
    super.start();
    archiveRemover = new DefaultArchiveRemover(tbrp.fileNamePattern, rc);
    archiveRemover.setContext(context);
    started = true;
  }
View Full Code Here


public class DefaultTimeBasedFileNamingAndTriggeringPolicy<E> extends TimeBasedFileNamingAndTriggeringPolicyBase<E> {

  @Override
  public void start() {
    super.start();
    archiveRemover = new DefaultArchiveRemover(tbrp.fileNamePattern, rc);
    archiveRemover.setContext(context);
    started = true;
  }
View Full Code Here

 
 
  @Override
  public void start() {
    super.start();
    archiveRemover = new DefaultArchiveRemover(tbrp.fileNamePattern, rc);
    started = true;
  }
View Full Code Here

TOP

Related Classes of ch.qos.logback.core.rolling.helper.DefaultArchiveRemover

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.