diff options
author | Don Stewart <dons@cse.unsw.edu.au> | 2006-06-12 08:46:56 +0000 |
---|---|---|
committer | Don Stewart <dons@cse.unsw.edu.au> | 2006-06-12 08:46:56 +0000 |
commit | 29e342d1903ba4cb4b58a66605f00920eddae7a5 (patch) | |
tree | b270e27e9da7b5a5bd6849fd10724a6b190b6e39 | |
parent | dda45b7ae83033cf99630435c13054f3f6ac67d2 (diff) | |
download | haskell-29e342d1903ba4cb4b58a66605f00920eddae7a5.tar.gz |
And move 'Chasing ...' messages into verbosity 2 as well
-rw-r--r-- | compiler/main/GHC.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs index 4e00c61206..5f82cf3fdb 100644 --- a/compiler/main/GHC.hs +++ b/compiler/main/GHC.hs @@ -494,7 +494,7 @@ depanal (Session ref) excluded_mods allow_dup_roots = do showPass dflags "Chasing dependencies" when (gmode == BatchCompile) $ - debugTraceMsg dflags 1 (hcat [ + debugTraceMsg dflags 2 (hcat [ text "Chasing modules from: ", hcat (punctuate comma (map pprTarget targets))]) |