With (run-job) I was iterating through items and displaying progress to stderr using 'prne'.
(def prne args (w/stdout (stderr) (apply prn args))) example... (def run-job () (each item (keys items) (process items.item) (prne item)))
... and thanks for the detailed explanation.