From 69597202dffd6c0e98f7ccc41dbd63ba743fe16b Mon Sep 17 00:00:00 2001 From: Steffen Jost Date: Wed, 21 Sep 2022 13:16:26 +0200 Subject: [PATCH] docs(log): add comments about log settings --- src/Settings/Log.hs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/Settings/Log.hs b/src/Settings/Log.hs index 57742ad0b..412308666 100644 --- a/src/Settings/Log.hs +++ b/src/Settings/Log.hs @@ -15,9 +15,10 @@ import Utils.PathPiece data LogSettings = LogSettings - { logAll, logDetailed :: Bool - , logMinimumLevel :: LogLevel - , logDestination :: LogDestination + { logDetailed :: Bool -- More details for incoming HTTP Requests? + , logAll :: Bool -- Show all LogLevels? + , logMinimumLevel :: LogLevel -- logAll => logMiniumLevel == Info + , logDestination :: LogDestination -- stderr, stdout (must both be lowercase) or a filename! , logSerializableTransactionRetryLimit :: Maybe Natural } deriving (Show, Read, Generic, Eq, Ord)