From e1f7582a9d9f4112bec7b92a61c7f2366ab91666 Mon Sep 17 00:00:00 2001 From: Simon Marlow Date: Wed, 2 May 2007 12:43:01 +0000 Subject: [PATCH] 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. --- compiler/main/HscMain.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 () -- 1.7.10.4