I am using rest-assured lib and extent report for reporting,
ValidatableResponse reponseManualLead = given().header("Accept", "application/json")
.contentType("application/json").header("Authorization", access_token)
.body(requestBody).log().body().when()
.put(losdevUrl + "/endUrl").then().log().all();
log().all() : Pritn log of request/reponse in console log , I need that to be log in extentreport , can we do that.
ExtentTestManager.getTest().log(LogStatus.INFO, "Response is:<br>" + "here");