flow-storm / flow-storm-debugger

A debugger for Clojure and ClojureScript with some unique features.
The Unlicense
708 stars 32 forks source link

Enhance the printer to use the multi-thread timeline when available #182

Closed jpmonettas closed 4 months ago

jpmonettas commented 5 months ago

Currently the printer doesn't use the multi-thread timeline, so the order of the prints will be sorted for each thread, but not between threads.

The printer is currently scanning each thread timeline sequentially and applying the printers, which both misses on some extra power and is not what users probably expect when running a println like system.

jpmonettas commented 4 months ago

This is already on master