Commit e078ec1f authored by Philip Makedonski's avatar Philip Makedonski
Browse files

* skip flooding the log with the response

parent 48ee9b1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public class HttpFileClient {
            InputStream responseStream = statusCode >= 400 ? conn.getErrorStream() : conn.getInputStream();
            
            String jsonResponse = readInputStream(responseStream);
            System.out.println("CLIENT: Got response: " + jsonResponse);
//            System.out.println("CLIENT: Got response: " + jsonResponse);
            Map<String, List<String>> headers = conn.getHeaderFields();
            
            return new ApiResponse(jsonResponse, statusCode, headers);