diff --git a/src/test/java/io/github/mfaisalkhatri/api/restfulecommerce/Logger.java b/src/test/java/io/github/mfaisalkhatri/api/restfulecommerce/Logger.java index a621bfa..ab787fe 100644 --- a/src/test/java/io/github/mfaisalkhatri/api/restfulecommerce/Logger.java +++ b/src/test/java/io/github/mfaisalkhatri/api/restfulecommerce/Logger.java @@ -17,7 +17,7 @@ public Logger (final APIResponse response) { } public void logResponseDetails() { - this.log.trace ("Logging Response Details....."); + this.log.info ("Logging Response Details....."); this.log.info ("Response Headers: \n{}", this.response.headers ()); this.log.info ("Status Code: {}", this.response.status ()); @@ -26,7 +26,7 @@ public void logResponseDetails() { .isBlank ()) { this.log.info ("Response Body: \n{}", prettyPrintJson (this.response.text ())); } - this.log.trace ("End of Logs!"); + this.log.info ("End of Logs!"); } private String prettyPrintJson (final String text) { @@ -44,6 +44,5 @@ private String prettyPrintJson (final String text) { } this.log.info ("No response body generated!"); return null; - } }