We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3efbd99 commit b03333cCopy full SHA for b03333c
src/leiningen/clojure_lsp/binary.clj
@@ -86,8 +86,10 @@
86
(let [server-path (server-path)
87
server-version (server-version)]
88
(when-not (.exists server-path)
89
- (println "Downloading and caching clojure-lsp...")
+ (binding [*out* *err*]
90
+ (println "Downloading and caching clojure-lsp..."))
91
(let [t (System/currentTimeMillis)]
92
(download! server-path server-version)
- (println (format "Downloaded clojure-lsp took %sms" (- (System/currentTimeMillis) t)))))
93
94
+ (println (format "Downloaded clojure-lsp took %sms" (- (System/currentTimeMillis) t))))))
95
(run-lsp! server-path args)))
0 commit comments