chestnut

2016-09-06T06:49:34.000006Z

@plexus: Through CIDER

2016-09-06T06:50:23.000009Z

I 'fixed' it by running my own server instead of hooking into the :ring-handler config

plexus 2016-09-06T06:51:19.000010Z

Right, it might also end up in the nrepl-server buffer

2016-09-06T06:52:59.000012Z

Probably something wrong on my side,

plexus 2016-09-06T06:55:00.000013Z

Not necessarily. It's just due to how nrepl works, it only intercepts output that happens inside its handler, if another thread writes to stdout nrepl and hence cider has no idea and so it won't show in the repl buffer

plexus 2016-09-06T06:55:44.000014Z

But you can see what's being printed by the Clojure process in the nrepl-server buffer

plexus 2016-09-06T06:56:47.000015Z

This is a common source of confusion. I've been thinking of writing an nrepl middleware that intercepts all output but haven't gotten beyond some small experiments