File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
cabal-install/src/Distribution/Client Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -130,7 +130,7 @@ import Distribution.Types.DependencySatisfaction
130130 ( DependencySatisfaction (.. )
131131 )
132132import Distribution.Verbosity
133- ( normal
133+ ( normal , deafening
134134 )
135135import Distribution.Version
136136
@@ -212,9 +212,9 @@ showDepResolverParams p =
212212 ((" \n " ++ ) . showLabeledConstraint)
213213 (depResolverConstraints p)
214214 ++ " \n preferences: "
215- ++ concatMap
216- ((" \n " ++ ) . showPackagePreference)
217- (depResolverPreferences p)
215+ ++ if depResolverVerbosity p >= deafening
216+ then concatMap ((" \n " ++ ) . showPackagePreference) ((depResolverPreferences p) )
217+ else " \n ... increase verbosity to see "
218218 ++ " \n strategy: "
219219 ++ show (depResolverPreferenceDefault p)
220220 ++ " \n reorder goals: "
You can’t perform that action at this time.
0 commit comments