You can buy this project and download/modify it how often you want.
package com.global.api.logging; import java.io.IOException; public interface IRequestLogger { void RequestSent(String request) throws IOException; void ResponseReceived(String response) throws IOException; }