Print the "skipping" messages at verbosity 2 again
authorSimon Marlow <simonmar@microsoft.com>
Wed, 2 May 2007 12:43:01 +0000 (12:43 +0000)
committerSimon Marlow <simonmar@microsoft.com>
Wed, 2 May 2007 12:43:01 +0000 (12:43 +0000)
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

index 50a015f..4da5943 100644 (file)
@@ -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 ()