1
1
mirror of https://github.com/aelve/guide.git synced 2024-11-22 11:33:34 +03:00

Fix case one-liner breaking Ormolu

This commit is contained in:
Artyom Kazak 2019-07-25 15:13:54 +03:00
parent c8039b898b
commit 9f8f0a2262

View File

@ -60,7 +60,9 @@ showLogLine timeFormat (Di.Core.Log time lvl path msg) =
format "[{}] {}: {} | {}" time' (show lvl) path' msg'
where
time' = formatTime defaultTimeLocale timeFormat (systemToUTCTime time)
path' = case showPath path of "" -> "<root>"; s -> s
path' = case showPath path of
"" -> "<root>"
s -> s
msg' = T.replace "\n" ";" (toText (Df1.unMessage msg))
-- | Pretty-print a log path.