Skip to content

Commit

Permalink
[Hot Fix] - Wrong log method calling
Browse files Browse the repository at this point in the history
  • Loading branch information
pankajjangid05 committed Jul 7, 2023
1 parent 393faab commit 8ca2989
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ public void accept(XMessage transformedMessage) {
}
long endTime = System.nanoTime();
long duration = (endTime - startTime);
log.error("Total time spent in processing form: " + duration / 1000000);
log.info("Total time spent in processing form: " + duration / 1000000);
} catch (JAXBException e) {
log.error("An error occured : " + e.getMessage());
e.printStackTrace();
Expand Down

0 comments on commit 8ca2989

Please sign in to comment.