From b2632e20bda6b46e475fd65edb99674cfc647de4 Mon Sep 17 00:00:00 2001 From: Joakim Erdfelt Date: Wed, 31 Aug 2016 13:51:37 -0700 Subject: [PATCH] Issue #231 - More javadoc updates --- .../apphosting/vmruntime/jetty9/RequestLoggerHandler.java | 2 +- .../com/google/apphosting/vmruntime/jetty9/LoggingIT.java | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/jetty9-compat-base/src/main/java/com/google/apphosting/vmruntime/jetty9/RequestLoggerHandler.java b/jetty9-compat-base/src/main/java/com/google/apphosting/vmruntime/jetty9/RequestLoggerHandler.java index 37dbc42..678e0dd 100644 --- a/jetty9-compat-base/src/main/java/com/google/apphosting/vmruntime/jetty9/RequestLoggerHandler.java +++ b/jetty9-compat-base/src/main/java/com/google/apphosting/vmruntime/jetty9/RequestLoggerHandler.java @@ -11,7 +11,7 @@ import java.util.logging.Logger; /** - * The {@link java.util.logging.Handler} responsible for capturing the + * The {@link java.util.logging.Handler} is responsible for capturing the * access logging events from {@link org.eclipse.jetty.server.handler.RequestLogHandler} * and {@link org.eclipse.jetty.server.Slf4jRequestLog} to a rolling file * on disk. diff --git a/jetty9-compat-base/src/test/java/com/google/apphosting/vmruntime/jetty9/LoggingIT.java b/jetty9-compat-base/src/test/java/com/google/apphosting/vmruntime/jetty9/LoggingIT.java index f1cd342..5819ead 100644 --- a/jetty9-compat-base/src/test/java/com/google/apphosting/vmruntime/jetty9/LoggingIT.java +++ b/jetty9-compat-base/src/test/java/com/google/apphosting/vmruntime/jetty9/LoggingIT.java @@ -50,10 +50,12 @@ public class LoggingIT extends VmRuntimeTestBase { * attempt to find the specific pattern you are interested in. *

* - * @param regex the text (regex) pattern to look for in the log file. + * @param logDir the directory where log files are kept, tracked by + * the {@link JettyRunner} + * @param regex the text (regex) pattern to look for in the log file * @return the File for the discovered log file * @throws java.io.FileNotFoundException if unable to find a log - * file with the specific text pattern + * file with the specific text pattern * @throws IOException if unable to read a log file and/or pattern */ public File findLogFileThatContains(File logDir, String regex) throws IOException {