Dominik Picheta

Results 594 comments of Dominik Picheta

Ahh, seems Jester sets the log level: https://github.com/dom96/jester/blob/master/jester.nim#L455 Happy to accept a PR that changes this I guess

Thanks for working on this @JohnAD. I currently don't have enough time to review your PR which I assume will require quite a bit of time, just want to let...

I suppose I should implement some logging formatting settings.

Any chance you can create a repro code sample?

It should get streamed though: https://github.com/dom96/jester/blob/master/jester.nim#L203. Perhaps it's a leak in Nim's GC/stdlib.

The code immediately below the line you've quoted reads from the file stream. The `readToStream` operation isn't awaited so it does it's thing concurrently. Note that the async future streams...

Yeah, I think you're right. That might be the problem here.

Sorry about the breakage, although it's possible this was intentional (you might be able to find the commit responsible quite easily which should explain things)

This sounds like it can be implemented fairly easily. But thinking about it some more, the challenge with this is how we execute processes. AFAIK we block on their execution...