packages feed

live-sequencer-0.0: src/Log.hs

module Log where

import qualified System.IO as IO
import Control.Monad ( when )


toConsole :: Bool
toConsole = False

put :: String -> IO ()
put msg = when toConsole $ IO.hPutStrLn IO.stderr msg