packages feed

sockets-0.4.0.0: src-production/Socket/Debug.hs

module Socket.Debug
  ( debug
  , whenDebugging
  , debugging
  ) where

debug :: String -> IO ()
debug _ = pure ()

whenDebugging :: IO () -> IO ()
whenDebugging _ = pure ()

debugging :: Bool
debugging = True