packages feed

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

module Socket.Debug
  ( debug
  , whenDebugging
  ) where

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

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