[project @ 2005-04-05 09:06:36 by krasimir]
authorkrasimir <unknown>
Tue, 5 Apr 2005 09:06:37 +0000 (09:06 +0000)
committerkrasimir <unknown>
Tue, 5 Apr 2005 09:06:37 +0000 (09:06 +0000)
commitbdfa0107143179ddd8e539306442eefeb1913d48
treeddae3fbbcee5e26d5640bbc1edf168a6b13f7acf
parent43c2b68138397eb08aa386e2818b6cc17e94fd1e
[project @ 2005-04-05 09:06:36 by krasimir]
In many places there was a common pattern

when (verbose >= n) $ putMsg "..."

It is now replaced with

debutTraceMsg dflags n "..."

In few places hPutStrLn stderr or putStrLn was used instead of putMsg in
the above pattern. They are replaced too. Now putMsg is used only in places
where the verbosity flag was not checked.
ghc/compiler/coreSyn/CoreLint.lhs
ghc/compiler/main/DriverMkDepend.hs
ghc/compiler/main/DriverPipeline.hs
ghc/compiler/main/ErrUtils.lhs
ghc/compiler/main/GHC.hs
ghc/compiler/main/Packages.lhs
ghc/compiler/main/StaticFlags.hs
ghc/compiler/main/SysTools.lhs