tolbala
tolbala
@martinsefcik I've implemented a workaround that basically just catches the exception and adds some logs to the report. The implementation is almost the same as it is in the allure-restassured...
@martinsefcik Here you can find the implementation of the missing methods: ``` private static String getRequestLog(HttpRequestAttachment requestAttachment) { return """ Method: %s URL: %s Body: %s """.formatted( requestAttachment.getMethod(), requestAttachment.getUrl(), requestAttachment.getBody()...