summaryrefslogtreecommitdiffstats
path: root/logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java
diff options
context:
space:
mode:
Diffstat (limited to 'logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java')
-rw-r--r--logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java10
1 files changed, 3 insertions, 7 deletions
diff --git a/logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java b/logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java
index d2a3d566c38..b1169aff02e 100644
--- a/logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java
+++ b/logserver/src/main/java/com/yahoo/logserver/handlers/archive/ArchiverHandler.java
@@ -25,28 +25,26 @@ import com.yahoo.logserver.handlers.AbstractLogHandler;
* is to make it easy to locate messages in a time interval, while
* ensuring that no log file exceeds the maximum allowed size.
* <p>
- * <p>
* This class is not thread safe.
* </p>
* <p>
- * <p>
* TODO:
* </p>
* <ul>
* <li> Add file locking support in order to make it
* possible to do concurrent compression of log
* files.
- * <p>
+ * </li>
* <li> Add support for disk monitoring. Should have
* high/low watermark mechanism and three modes
* of operation: normal, tight and full. In
* "tight" mode disk is running low and compression
* and cleanup should possibly be more frequent.
- * <p>
+ * </li>
* <li> Add compression task which periodically scans
* the log directory looking for uncompressed
* candidate log files.
- * <p>
+ * </li>
* </ul>
*
* @author Bjorn Borud
@@ -151,7 +149,6 @@ public class ArchiverHandler extends AbstractLogHandler {
* down number representing year, month, day and hour in order
* to partition logging in time.
* <p>
- * <p>
* This method is not thread-safe.
*/
public int dateHash(long time) {
@@ -170,7 +167,6 @@ public class ArchiverHandler extends AbstractLogHandler {
/**
* Generate prefix for log filenames based on log message.
* <p>
- * <p>
* <EM>This message is <code>public</code> only because we need
* access to it in unit tests. For all practical purposes this
* method does not exist to you, the application programmer, OK? :-)</EM>