docs(log): add comments about log settings

This commit is contained in:
Steffen Jost 2022-09-21 13:16:26 +02:00
parent 790a3a4c16
commit 69597202df

View File

@ -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)