@Immutable public final class VerboseWire extends Object implements Wire
This wire makes HTTP request and response details visible in log (we're using SLF4J logging facility), for example:
 String html = new JdkRequest("http://goggle.com")
   .through(VerboseWire.class)
   .header(HttpHeaders.ACCEPT, MediaType.TEXT_PLAIN)
   .fetch()
   .body();
 The class is immutable and thread-safe.
| Constructor and Description | 
|---|
| VerboseWire(Wire wire)Public ctor. | 
| Modifier and Type | Method and Description | 
|---|---|
| Response | send(Request req,
    String home,
    String method,
    Collection<Map.Entry<String,String>> headers,
    InputStream content,
    int connect,
    int read)Send request and return response. | 
public VerboseWire(Wire wire)
wire - Original wirepublic Response send(Request req, String home, String method, Collection<Map.Entry<String,String>> headers, InputStream content, int connect, int read) throws IOException
Wiresend in interface Wirereq - Requesthome - URI to fetchmethod - HTTP methodheaders - Headerscontent - HTTP bodyconnect - The connect timeoutread - The read timeoutIOException - if failsCopyright © 2012–2017 jcabi.com. All rights reserved.