Skip to content
  • Krasimir Angelov's avatar
    [project @ 2005-04-05 09:06:36 by krasimir] · bdfa0107
    Krasimir Angelov authored
    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.
    bdfa0107