Skip to content

Commit

Permalink
feat(cb2-9560): added logger for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
cb-cs committed Oct 18, 2023
1 parent 9bf74be commit 50a024d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main/java/uk/gov/dvsa/PdfGenerator.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ public PdfGenerator() {
public ApiGatewayResponse handleRequest(Map<String, Object> input, Context context) {
long start = System.nanoTime();
eventLogger.logEvent(EventType.CERT_REQUEST_RECEIVED);

System.out.println("*** This is the input from the handleRequest method: ");
System.out.println(input);

try {
if (input.containsKey(requestParser.REQUEST_HEADERS)) {
// Trace headers only they are provided in the input request, else ignore.
Expand Down

0 comments on commit 50a024d

Please sign in to comment.