From a0127130a6723c30876e937daf305332a11392d8 Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Wed, 12 Oct 2016 18:56:04 +0200 Subject: [PATCH] Remove some println's in http impl. --- src/uxbox/util/http.cljs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/uxbox/util/http.cljs b/src/uxbox/util/http.cljs index 28e5d6659..15787d42e 100644 --- a/src/uxbox/util/http.cljs +++ b/src/uxbox/util/http.cljs @@ -44,7 +44,6 @@ (defn- translate-response-type [type] - (println "translate-response-type" type) (case type :text ResponseType.TEXT :blob ResponseType.BLOB @@ -63,7 +62,6 @@ [{:keys [method url query-string query-params headers body] :as request} {:keys [timeout credentials? response-type] :or {timeout 0 credentials? false response-type :text}}] - (println "fetch$1" url) (let [uri (create-url url query-string query-params) headers (if headers (clj->js headers) #js {}) method (translate-method method)