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

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


      }
    }
    nextCheck = rc.getNextTriggeringMillis(lastCheck);

    if (maxHistory != NO_DELETE_HISTORY) {
      tbCleaner = new TimeBasedCleaner(fileNamePattern, rc, maxHistory);
    }
  }
View Full Code Here


      }
    }
    nextCheck = rc.getNextTriggeringMillis(lastCheck);

    if (maxHistory != NO_DELETE_HISTORY) {
      tbCleaner = new TimeBasedCleaner(fileNamePattern, rc, maxHistory);
    }
  }
View Full Code Here

    // currentTime = System.currentTimeMillis();
    lastCheck.setTime(getCurrentTime());
    nextCheck = rc.getNextTriggeringMillis(lastCheck);

    if (maxHistory != DEFAULT_MAX_HISTORY) {
      tbCleaner = new TimeBasedCleaner(fileNamePattern, rc, maxHistory);
    }
  }
View Full Code Here

TOP

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

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.