Index: logback-core/src/main/java/ch/qos/logback/core/rolling/TimeBasedRollingPolicy.java
===================================================================
--- logback-core/src/main/java/ch/qos/logback/core/rolling/TimeBasedRollingPolicy.java (revision 2)
+++ logback-core/src/main/java/ch/qos/logback/core/rolling/TimeBasedRollingPolicy.java Wed Jun 10 14:10:12 PDT 2009
@@ -1,8 +1,8 @@
/**
* Logback: the reliable, generic, fast and flexible logging framework.
- *
+ *
* Copyright (C) 1999-2006, QOS.ch
- *
+ *
* This library is free software, you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation.
@@ -26,10 +26,10 @@
* TimeBasedRollingPolicy
is both easy to configure and quite
* powerful. It allows the roll over to be made based on time. It is possible to
* specify that the roll over occur once per day, per week or per month.
- *
+ *
*
For more information, please refer to the online manual at
* http://logback.qos.ch/manual/appenders.html#TimeBasedRollingPolicy
- *
+ *
* @author Ceki Gülcü
*/
public class TimeBasedRollingPolicy The RollingPolicy must know whether it is responsible for changing the
* name of the active file or not. If the active file name is set by the user
* via the configuration file, then the RollingPolicy must let it like it is.
* If the user does not specify an active file name, then the RollingPolicy
* generates one.
- *
+ *
* To be sure that the file name used by the parent class has been
* generated by the RollingPolicy and not specified by the user, we keep track
* of the last generated name object and compare its reference to the parent
* file name. If they match, then the RollingPolicy knows it's responsible for
* the change of the file name.
- *
+ *
*/
public String getActiveFileName() {
if (getParentsRawFileProperty() == null) {
@@ -250,7 +247,7 @@
/**
* Get the number of archive files to keep.
- *
+ *
* @return number of archive files to keep
*/
public int getMaxHistory() {
@@ -259,7 +256,7 @@
/**
* Set the maximum number of archive files to keep.
- *
+ *
* @param maxHistory
* number of archive files to keep
*/