From 208d6acb715628fab1ae05af404ea21dc3c81a8d Mon Sep 17 00:00:00 2001 From: stevenbobo <sbobo3@illinois.edu> Date: Sun, 15 Nov 2020 23:29:51 -0600 Subject: [PATCH] Added event logging for CauseOfDeathTrendsReport jsp file. --- iTrust/WebRoot/auth/hcp/causeOfDeathTrendsReport.jsp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/iTrust/WebRoot/auth/hcp/causeOfDeathTrendsReport.jsp b/iTrust/WebRoot/auth/hcp/causeOfDeathTrendsReport.jsp index 99e23e5..df099bb 100644 --- a/iTrust/WebRoot/auth/hcp/causeOfDeathTrendsReport.jsp +++ b/iTrust/WebRoot/auth/hcp/causeOfDeathTrendsReport.jsp @@ -19,6 +19,9 @@ String view = request.getParameter("viewSelect"); <%@include file="/header.jsp" %> <% + //log the page view + loggingAction.logEvent(TransactionType.DEATH_TRENDS_VIEW, loggedInMID.longValue(), 0, "View cause-of-death trends report"); + CauseOfDeathTrendsReportDAO report = new CauseOfDeathTrendsReportDAO(prodDAO); List<CauseOfDeathTrendsReportBean> allDeaths = null; -- GitLab