module DPut where import Control.Concurrent.STM import qualified Data.Map.Strict as Map import System.IO (stderr,hPutStrLn) import Data.Maybe import System.IO.Unsafe (unsafePerformIO) import System.Log.Logger import qualified Data.ByteString.Char8 as B import qualified Data.Text as T import qualified Data.Text.Encoding as T -- | Debug Tags, add more as needed, but ensure XAnnounce is always first, XMisc last data DebugTag = XAnnounce | XBitTorrent | XDHT | XLan | XMan | XNetCrypto | XOnion | XPing | XRefresh | XWLog | XMisc deriving (Eq,Ord,Show,Read,Enum,Bounded) appName :: String appName = "toxmpp" (<.>) :: String -> String -> String a <.> b = a ++ "." ++ b dput :: DebugTag -> String -> IO () dput tag msg = debugM (appName <.> show tag) msg dputB :: DebugTag -> B.ByteString -> IO () dputB tag msg = debugM (appName <.> show tag) (T.unpack . T.decodeUtf8 $ msg) setTagLevel :: Priority -> DebugTag -> IO () setTagLevel level tag = updateGlobalLogger (appName <.> show tag) (setLevel level) setQuiet :: DebugTag -> IO () setQuiet = setTagLevel WARNING setVerbose :: DebugTag -> IO () setVerbose = setTagLevel DEBUG getVerbose tag = do logger <- getLogger (appName <.> show tag) case getLevel logger of Just p | p <= DEBUG -> return True _ -> return False