aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vid-app-common/src/main/java/org/onap/vid/controller/ViewLogController.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/controller/ViewLogController.java b/vid-app-common/src/main/java/org/onap/vid/controller/ViewLogController.java
index 92eba8b5f..5775b3cf3 100644
--- a/vid-app-common/src/main/java/org/onap/vid/controller/ViewLogController.java
+++ b/vid-app-common/src/main/java/org/onap/vid/controller/ViewLogController.java
@@ -44,7 +44,8 @@ public class ViewLogController extends RestrictedBaseController{
private static final EELFLoggerDelegate LOGGER = EELFLoggerDelegate.getLogger(ViewLogController.class);
/** The Constant dateFormat. */
- static final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
+ public final DateFormat dateFormat = new SimpleDateFormat("HH:mm:ss:SSSS");
+
/** The servlet context. */
private @Autowired ServletContext servletContext;