dev: lib: clarify dlogAt's doc

This commit is contained in:
Simon Michael 2022-09-10 12:42:14 -10:00
parent 6f258b704a
commit 5c14ed2ec9

View File

@ -466,7 +466,7 @@ dlogTraceAt level s
| level > 0 && debugLevel < level = id
| otherwise = dlogTrace s
-- | Log a label and pretty-printed showable value to "./debug.log",
-- | Log and pretty-print a label and showable value to "./debug.log",
-- if the global debug level is at or above the specified level.
-- At level 0, always prints. Otherwise, uses unsafePerformIO.
dlogAt :: Show a => Int -> String -> a -> a