module DebugTag where import Data.Typeable -- | Debug Tags, add more as needed, but ensure XAnnounce is always first, XMisc last data DebugTag = XAnnounce | XAnnounceResponse | XBitTorrent | XDBus | XDHT | XLan | XMan | XNetCrypto | XOnion | XRelay | XRelayVerbose | XRoutes | XPing | XJabber | XTCP | XMisc | XUnexpected -- Used only for special anomalous errors that we didn't expect to happen. | XUnused -- Never commit code that uses XUnused. deriving (Eq, Ord, Show, Read, Enum, Bounded,Typeable)