diff options
author | lassulus <lass@lassul.us> | 2017-05-02 23:09:29 +0200 |
---|---|---|
committer | lassulus <lass@lassul.us> | 2017-05-02 23:09:29 +0200 |
commit | 53da2df0363d0729f24c4dc85fb3eeb2ed8d235e (patch) | |
tree | 27a2e50d520588af28a6e619a1c183652782e5c7 | |
parent | c3985dce677c52a902f5fec6a11847d945af312c (diff) |
log errors to stderr
-rw-r--r-- | news.hs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -75,6 +75,6 @@ main = do threadDelay (delay * 10^6) rec url delay bloom' ) - `catch` \e -> putStrLn ("Caught " ++ show (e :: SomeException)) >> rec url delay bloom + `catch` \e -> hPutStrLn stderr ("Caught " ++ show (e :: SomeException)) >> rec url delay bloom |