aboutsummaryrefslogtreecommitdiff
path: root/Messages.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Messages.hs')
-rw-r--r--Messages.hs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Messages.hs b/Messages.hs
index 8cf4647cd..0e83a7243 100644
--- a/Messages.hs
+++ b/Messages.hs
@@ -31,6 +31,7 @@ module Messages (
setupConsole,
enableDebugOutput,
disableDebugOutput,
+ commandProgressDisabled,
) where
import Text.JSON
@@ -96,8 +97,8 @@ doSideAction' b a = do
{- Make way for subsequent output of a command. -}
showOutput :: Annex ()
-showOutput = handleMessage q $
- putStr "\n"
+showOutput = unlessM commandProgressDisabled $
+ handleMessage q $ putStr "\n"
showLongNote :: String -> Annex ()
showLongNote s = handleMessage (JSON.note s) $
@@ -183,3 +184,12 @@ enableDebugOutput = updateGlobalLogger rootLoggerName $ setLevel DEBUG
disableDebugOutput :: IO ()
disableDebugOutput = updateGlobalLogger rootLoggerName $ setLevel NOTICE
+
+{- Should commands that normally output progress messages have that
+ - output disabled? -}
+commandProgressDisabled :: Annex Bool
+commandProgressDisabled = withOutputType $ \t -> return $ case t of
+ QuietOutput -> True
+ ProgressOutput -> True
+ JSONOutput -> True
+ NormalOutput -> False