Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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 ());
Expand All @@ -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) {
Expand All @@ -44,6 +44,5 @@ private String prettyPrintJson (final String text) {
}
this.log.info ("No response body generated!");
return null;

}
}
Loading