File tree 1 file changed +2
-3
lines changed
src/test/java/io/github/mfaisalkhatri/api/restfulecommerce
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ public Logger (final APIResponse response) {
17
17
}
18
18
19
19
public void logResponseDetails () {
20
- this .log .trace ("Logging Response Details....." );
20
+ this .log .info ("Logging Response Details....." );
21
21
22
22
this .log .info ("Response Headers: \n {}" , this .response .headers ());
23
23
this .log .info ("Status Code: {}" , this .response .status ());
@@ -26,7 +26,7 @@ public void logResponseDetails() {
26
26
.isBlank ()) {
27
27
this .log .info ("Response Body: \n {}" , prettyPrintJson (this .response .text ()));
28
28
}
29
- this .log .trace ("End of Logs!" );
29
+ this .log .info ("End of Logs!" );
30
30
}
31
31
32
32
private String prettyPrintJson (final String text ) {
@@ -44,6 +44,5 @@ private String prettyPrintJson (final String text) {
44
44
}
45
45
this .log .info ("No response body generated!" );
46
46
return null ;
47
-
48
47
}
49
48
}
You can’t perform that action at this time.
0 commit comments