summaryrefslogtreecommitdiff
path: root/Utility/Debug.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Utility/Debug.hs')
-rw-r--r--Utility/Debug.hs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/Debug.hs b/Utility/Debug.hs
index e0be9c9..6e6e701 100644
--- a/Utility/Debug.hs
+++ b/Utility/Debug.hs
@@ -34,7 +34,7 @@ newtype DebugSource = DebugSource S.ByteString
deriving (Eq, Show)
instance IsString DebugSource where
- fromString = DebugSource . encodeBS'
+ fromString = DebugSource . encodeBS
-- | Selects whether to display a message from a source.
data DebugSelector
@@ -97,6 +97,6 @@ fastDebug (DebugSelector p) src msg
formatDebugMessage :: DebugSource -> String -> IO S.ByteString
formatDebugMessage (DebugSource src) msg = do
- t <- encodeBS' . formatTime defaultTimeLocale "[%F %X%Q]"
+ t <- encodeBS . formatTime defaultTimeLocale "[%F %X%Q]"
<$> getZonedTime
return (t <> " (" <> src <> ") " <> encodeBS msg)