summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-05-29 08:06:56 +0000
committerbjorn <bjorn@bringert.net>2008-05-29 08:06:56 +0000
commit34736bb431aefa956de037af468ca4edc8a8999a (patch)
tree5e123cc176c6d1faa44b7e8f72bc8e7c0908140e
parentd459573c80a45f5368dd743a1b149a53e3129567 (diff)
Only print \n instead of CPU time in putPointE when printing the text message. This avoids printings lots of empty lines in silent mode.
-rw-r--r--src-3.0/GF/Infra/UseIO.hs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src-3.0/GF/Infra/UseIO.hs b/src-3.0/GF/Infra/UseIO.hs
index 079958b05..5762454d7 100644
--- a/src-3.0/GF/Infra/UseIO.hs
+++ b/src-3.0/GF/Infra/UseIO.hs
@@ -249,10 +249,10 @@ putPointE v opts msg act = do
a <- act >>= ioeIO . evaluate
t2 <- ioeIO $ getCPUTime
- ioeIO $ putStrLnFlush
- (if flag optShowCPUTime opts
- then (' ' : show ((t2 - t1) `div` 1000000000) ++ " msec")
- else "")
+ if flag optShowCPUTime opts
+ then putStrLnE (" " ++ show ((t2 - t1) `div` 1000000000) ++ " msec")
+ else when (verbAtLeast opts v) $ putStrLnE ""
+
return a