Skip to content

Commit 7924a05

Browse files
committed
Fix a log
1 parent ed5377d commit 7924a05

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/simulflow/processors/activity_monitor.clj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,9 @@
100100
timer-out-ch (a/chan 1024)]
101101
(vthread-loop []
102102
(let [timeout-ch (a/timeout timeout-ms)
103-
[v c] (a/alts!! [timer-in-ch timeout-ch])]
103+
[_v c] (a/alts!! [timer-in-ch timeout-ch])]
104104
(when (= c timeout-ch)
105105
(t/log! {:msg "Activity timeout activated!"
106-
:data {:timeout-ms timeout-ms :c c :v v}
107106
:id :activity-monitor
108107
:level :debug})
109108
(a/>!! timer-out-ch {::timeout? true}))

0 commit comments

Comments
 (0)