protected void logResponse()

in src/main/java/com/twitter/nodes/Node.java [872:877]


  protected void logResponse(@Nullable Resp response) {
    String str = response == null ? null : printResponse(response);
    if (str != null && !isOptional()) {
      debugDetailed("response: %s", str);
    }
  }