cpkg-0.1.0.0: src/Package/C/Type/Verbosity.hs
module Package.C.Type.Verbosity ( Verbosity (..)
) where
data Verbosity = Silent -- ^ Display nothing
| Normal -- ^ Display progress information
| Verbose -- ^ Display stderr from builds
| Loud -- ^ Display stdout and stderr from builds
| Diagnostic -- ^ Display stdout and stderr from builds, and display debug information
deriving (Eq, Ord)