diff options
author | Joey Hess <joey@kitenet.net> | 2012-07-17 14:40:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-07-17 14:40:05 -0400 |
commit | 182526ff68b1ca68952b4dbd32121e46d4a80e85 (patch) | |
tree | ecd7097dca179776a5a92e0da11e7bebe01c6d37 /Utility/SafeCommand.hs | |
parent | 1d5582091e9df550a8b42d0a69bada1d15a1825e (diff) |
add debugging
Diffstat (limited to 'Utility/SafeCommand.hs')
-rw-r--r-- | Utility/SafeCommand.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/SafeCommand.hs b/Utility/SafeCommand.hs index aedf27137..2c6439b45 100644 --- a/Utility/SafeCommand.hs +++ b/Utility/SafeCommand.hs @@ -78,8 +78,8 @@ safeSystemEnv command params env = do {- executeFile with debug logging -} executeFile :: FilePath -> Bool -> [String] -> Maybe [(String, String)] -> IO () executeFile c path p e = do - debugM "Utility.SafeCommand.executeFile" $ - "Running: " ++ c ++ " " ++ show p ++ " " ++ maybe "" show e + --debugM "Utility.SafeCommand.executeFile" $ + -- "Running: " ++ c ++ " " ++ show p ++ " " ++ maybe "" show e System.Posix.Process.executeFile c path p e {- Escapes a filename or other parameter to be safely able to be exposed to |