All Downloads are FREE. Search and download functionalities are using the official Maven repository.

meyvn.nrepl_middleware.flowstorm.clj Maven / Gradle / Ivy

The newest version!
(ns meyvn.nrepl-middleware.flowstorm
  (:require [flow-storm.api :as dbg]))

(def state (atom false))

(def flowstorm #(swap! state not))
(defn toggle []
  (if @state
    (do
      (dbg/stop)
      (flowstorm)
      "Stopping flowstorm debugger")
    (do
      (dbg/local-connect)
      (flowstorm)
      "Starting flowstorm debugger")))




© 2015 - 2024 Weber Informatics LLC | Privacy Policy