From: Simon Marlow Date: Wed, 2 May 2007 12:43:01 +0000 (+0000) Subject: Print the "skipping" messages at verbosity 2 again X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=e1f7582a9d9f4112bec7b92a61c7f2366ab91666 Print the "skipping" messages at verbosity 2 again This was accidentally changed to 1 in the HEAD a while ago, the behaviour is now the same as 6.6.x again. --- diff --git a/compiler/main/HscMain.lhs b/compiler/main/HscMain.lhs index 50a015f..4da5943 100644 --- a/compiler/main/HscMain.lhs +++ b/compiler/main/HscMain.lhs @@ -398,7 +398,7 @@ batchMsg mb_mod_index recomp liftIO $ do if recomp then showMsg "Compiling " - else if verbosity (hsc_dflags hsc_env) >= 1 + else if verbosity (hsc_dflags hsc_env) >= 2 then showMsg "Skipping " else return ()