Skip to content

Commit

Permalink
Log when synchronous or asynchronous print reports are requested
Browse files Browse the repository at this point in the history
  • Loading branch information
sebr72 committed Sep 20, 2024
1 parent 8dad522 commit ed84893
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -498,6 +498,7 @@ public final void createReport(
final HttpServletRequest createReportRequest,
final HttpServletResponse createReportResponse)
throws NoSuchAppException {
LOGGER.info("{} requested.", REPORT_URL);
setNoCache(createReportResponse);
String ref =
createAndSubmitPrintJob(
Expand Down Expand Up @@ -629,6 +630,7 @@ public final void createReportAndGet(
final HttpServletRequest createReportRequest,
final HttpServletResponse createReportResponse)
throws IOException, ServletException, InterruptedException, NoSuchAppException {
LOGGER.info("{} requested.", CREATE_AND_GET_URL);
setNoCache(createReportResponse);

String ref =
Expand Down

0 comments on commit ed84893

Please sign in to comment.