Skip to content

Commit 7882b29

Browse files
committed
remove debugging printlns and time calls
1 parent f85ef44 commit 7882b29

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

src/lambdaisland/launchpad/deps.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
(spit ".cpcache/launchpad.cp"
3131
(str/join
3232
":"
33-
(time (mapcat second (licp/classpath-chain))))))
33+
(mapcat second (licp/classpath-chain)))))
3434

3535
(defn watch-handlers [opts]
3636
(let [basis (basis opts)

src/lambdaisland/launchpad/watcher.clj

+8-11
Original file line numberDiff line numberDiff line change
@@ -63,17 +63,14 @@
6363
(run! beholder/stop w))
6464
(doall
6565
(for [dir directories]
66-
(do
67-
(print dir "")
68-
(time
69-
(watch
70-
(fn [{:keys [type path] :as event}]
71-
(if-let [f (get file->handler (str path))]
72-
(try
73-
(f event)
74-
(catch Exception e
75-
(prn e)))))
76-
(str dir))))))))))
66+
(watch
67+
(fn [{:keys [type path] :as event}]
68+
(if-let [f (get file->handler (str path))]
69+
(try
70+
(f event)
71+
(catch Exception e
72+
(prn e)))))
73+
(str dir))))))))
7774

7875
(comment
7976
(watch!

0 commit comments

Comments
 (0)