dotfs-0.1.1.3: System/DotFS/Util/Debug.hs
{-# LANGUAGE Haskell98 #-}
module System.DotFS.Util.Debug where
-- TODO: nicer logging, to a variable filename (State / Reader monad?)
debug :: String -> IO ()
debug str = appendFile "/tmp/foo" (str ++ "\n")