Logging to stdout seemingly ignored

2014-07-17 Thread Jonathan Sterling
I hope this is the right place to ask this question. I have a Haskell app running on Cedar, and I am having some trouble with logging. When I print to stdout and run my app locally, I can see the output; but it does not appear in `heroku logs`. In fact, `heroku logs --source app` is quite empty

Re: Logging to stdout seemingly ignored

2014-07-17 Thread Jonathan Sterling
Welp, I'm sorry for spamming the board since I've found the solution already. For posterity, here's how to make logging work in a Haskell app without tearing out your hair: hSetBuffering stdout NoBuffering Best, Jon On Thursday, July 17, 2014 5:30:42 PM UTC-7, Jonathan Sterling wrote: > > I ho