-- Hoogle documentation, generated by Haddock -- See Hoogle, http://www.haskell.org/hoogle/ -- | Debug print formatting library. -- -- Print debugging with stack trace for Haskell (formatted for ease of -- use). See screenshot: http://i.imgur.com/KCXYHNk.png @package print-debugger @version 1.1.8 module Debug.Print.StackTraceDebug -- | Set to False and recompile in order to disable print statements -- with stack traces. debugMode :: Bool -- | Prints message with a one line stack trace (formatted like a Java -- Exception for IDE usability). Meant to be a substitute for -- Debug.Trace.traceIO debugTraceIO :: (?loc :: CallStack) => String -> IO () -- | Shorthand for "debugTraceIO". Prints a message with a formatted stack -- trace. prt :: (?loc :: CallStack) => String -> IO () -- | This method tests the "debugTraceIO" function. test :: IO ()