File: Debug.hs

package info (click to toggle)
haskell-curl 1.3.8-16
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 260 kB
  • sloc: haskell: 1,528; ansic: 33; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 509 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--------------------------------------------------------------------
-- |
-- Module    : Network.Curl.Debug
-- Copyright : (c) Galois, Inc. 2008-2009
-- License   : BSD3
--
-- Maintainer: Sigbjorn Finne <sof@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 ()