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
@@ -213,9 +213,9 @@ showDepResolverParams p =
213213 ((" \n " ++ ) . showLabeledConstraint)
214214 (depResolverConstraints p)
215215 ++ " \n preferences: "
216- ++ concatMap
217- ((" \n " ++ ) . showPackagePreference)
218- (depResolverPreferences p)
216+ ++ if depResolverVerbosity p >= deafening
217+ then concatMap ((" \n " ++ ) . showPackagePreference) ((depResolverPreferences p) )
218+ else " \n ... increase verbosity to see "
219219 ++ " \n strategy: "
220220 ++ show (depResolverPreferenceDefault p)
221221 ++ " \n reorder goals: "
You can’t perform that action at this time.
0 commit comments