From c967b4f7ddfa529297a1211db39c4d4f7a2bdbaf Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Wed, 9 Oct 2024 11:14:19 -0700 Subject: [PATCH] remove debug printlns (oops!) Signed-off-by: Sean Corfield --- src/org/corfield/dev/repl.clj | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/org/corfield/dev/repl.clj b/src/org/corfield/dev/repl.clj index 1b99e9c..c40cef5 100644 --- a/src/org/corfield/dev/repl.clj +++ b/src/org/corfield/dev/repl.clj @@ -136,17 +136,14 @@ ["Figwheel Main" #(figgy "-b" "dev" "-r")]) (catch Throwable _)) (try ; Rebel Readline? - (println "looking for rebel...") (let [rebel-main (requiring-resolve 'rebel-readline.main/-main)] (try - (println "looking for nrepl...") (require 'nrepl.cmdline) ;; both Rebel Readline and nREPL are on the classpath! [(str "Rebel Readline + nREPL Server" (when (seq middleware) (str " with " (str/join ", " (map first middleware))))) (fn [] - (println "starting combined repl...") ;; see https://github.com/practicalli/clojure-cli-config/blob/03c91cfd0638d880c32e6be09937e69ea8559cd2/deps.edn#L158-L167 (apply (resolve 'clojure.main/main) "-e" "(apply require clojure.main/repl-requires)"