Skip to content
Snippets Groups Projects
Commit 24721326 authored by Edward Z. Yang's avatar Edward Z. Yang Committed by Edward Z. Yang
Browse files

Add verboseHasFlags function.


Signed-off-by: default avatarEdward Z. Yang <ezyang@cs.stanford.edu>
parent 64469929
No related branches found
No related tags found
No related merge requests found
......@@ -30,7 +30,7 @@ module Distribution.Verbosity (
moreVerbose, lessVerbose,
intToVerbosity, flagToVerbosity,
showForCabal, showForGHC,
verboseNoFlags,
verboseNoFlags, verboseHasFlags,
-- * Call stacks
verboseCallSite, verboseCallStack,
......@@ -185,6 +185,9 @@ verboseCallStack v = v { vFlags = Set.insert VCallStack (vFlags v) }
verboseNoFlags :: Verbosity -> Verbosity
verboseNoFlags v = v { vFlags = Set.empty }
verboseHasFlags :: Verbosity -> Bool
verboseHasFlags = not . Set.null . vFlags
-- | Test if we should output call sites when we log.
isVerboseCallSite :: Verbosity -> Bool
isVerboseCallSite = (Set.member VCallSite) . vFlags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment