diff --git a/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java b/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java index 5aa633fae..ecad6c2f3 100644 --- a/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java +++ b/dependency-check-core/src/main/java/org/owasp/dependencycheck/reporting/VelocityLoggerRedirect.java @@ -24,15 +24,14 @@ import org.slf4j.LoggerFactory; /** *
- * DependencyCheck uses {@link org.slf4j.Logger} as a logging framework, and Apache Velocity uses a custom - * logging implementation that outputs to a file named velocity.log by default. This class is an implementation of a - * custom Velocity logger that redirects all velocity logging to the Java Logger class. + * DependencyCheck uses {@link org.slf4j.Logger} as a logging framework, and Apache Velocity uses a custom logging implementation + * that outputs to a file named velocity.log by default. This class is an implementation of a custom Velocity logger that + * redirects all velocity logging to the Java Logger class. *
- * This class was written to address permission issues when using Dependency-Check in a server environment (such as the - * Jenkins plugin). In some circumstances, Velocity would attempt to create velocity.log in an un-writable - * directory.
+ * This class was written to address permission issues when using Dependency-Check in a server environment (such as the Jenkins + * plugin). In some circumstances, Velocity would attempt to create velocity.log in an un-writable directory. * - * @author Steve Springett