curl-1.3: Network/Curl/Debug.hs
--------------------------------------------------------------------
-- |
-- Module : Network.Curl.Debug
-- Copyright : (c) Galois, Inc. 2008
-- License : BSD3
--
-- Maintainer: Don Stewart <dons@galois.com>
-- Stability : provisional
-- Portability:
--
-- Debug hooks
module Network.Curl.Debug (debug) where
import System.IO
debugging :: Bool
debugging = False
debug :: String -> IO ()
debug msg
| debugging = putStrLn ("DEBUG: " ++ msg) >> hFlush stdout
| otherwise = return ()