From 8940352b12fe5c28e7ce82b2a5b0b859c32ce203 Mon Sep 17 00:00:00 2001 From: Practicalli Engineering Date: Mon, 8 Jul 2024 07:46:04 +0100 Subject: [PATCH] format: flowstorm aliases description --- deps.edn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/deps.edn b/deps.edn index 5752676..e226f58 100644 --- a/deps.edn +++ b/deps.edn @@ -506,14 +506,14 @@ :lib/flowstorm {:extra-deps {com.github.flow-storm/flow-storm-dbg {:mvn/version "3.16.0"}}} - ;; This is the simplest way to use FlowStorm. - ;; It replaces the Clojure compiler with a patched one that instruments everything. + ;; Suggested FlowStorm approach. + ;; Use patched Clojure compiler which instruments all evaluations ;; https://flow-storm.github.io/flow-storm-debugger/user_guide.html#_clojurestorm :lib/clojurestorm {:classpath-overrides {org.clojure/clojure nil} :extra-deps {com.github.flow-storm/clojure {:mvn/version "1.11.3-1"} com.github.flow-storm/flow-storm-dbg {:mvn/version "3.16.0"}} - ;; You can optionally add another jvm-opt to restrict the instrumentation: + ;; Optionally add jvm-opt to manage instrumentation: ;; -Dclojure.storm.instrumentOnlyPrefixes=YOUR_INSTRUMENTATION_STRING" :jvm-opts ["-Dclojure.storm.instrumentEnable=true"]}