Skip to content

Commit

Permalink
Merge branch 'master' into _update-deps/runtimeverification/k
Browse files Browse the repository at this point in the history
  • Loading branch information
rv-jenkins authored Sep 30, 2024
2 parents ea2ee16 + 79caf8c commit 0b89701
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 5 additions & 2 deletions booster/library/Booster/CLOptions.hs
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ data LogFormat
= Standard
| OneLine
| Json
deriving (Eq)
deriving (Eq, Enum)

instance Show LogFormat where
show = \case
Expand Down Expand Up @@ -155,7 +155,10 @@ parseLogOptions =
( metavar "LOGFORMAT"
<> value OneLine
<> long "log-format"
<> help "Format to output logs in"
<> help
( "Format to output logs in. Available formats: "
<> intercalate ", " (map show $ enumFrom (toEnum @LogFormat 0))
)
<> showDefault
)
<*> many
Expand Down
6 changes: 4 additions & 2 deletions dev-tools/booster-dev/Server.hs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ runServer port definitions defaultMain mLlvmLibrary rewriteOpts logFile mSMTOpti
withFastLogger mTimeCache logFile $ \stderrLogger mFileLogger -> do
let boosterContextLogger = case logFormat of
Json -> Booster.Log.jsonLogger $ fromMaybe stderrLogger mFileLogger
_ -> Booster.Log.textLogger stderrLogger
_ -> Booster.Log.textLogger $ fromMaybe stderrLogger mFileLogger
filteredBoosterContextLogger =
flip Booster.Log.filterLogger boosterContextLogger $ \(Booster.Log.LogMessage (Booster.Flag alwaysDisplay) ctxts _) ->
alwaysDisplay
Expand All @@ -163,10 +163,12 @@ runServer port definitions defaultMain mLlvmLibrary rewriteOpts logFile mSMTOpti
}
jsonRpcServer
(serverSettings port "*")
( const $
( \rawReq req ->
flip runReaderT (filteredBoosterContextLogger, toModifiersRep prettyPrintOptions)
. Booster.Log.unLoggerT
. Booster.Log.withContextFor (getReqId rawReq)
. Booster.Log.withContext Booster.Log.CtxBooster
. respond stateVar
$ req
)
[handleSmtError, RpcError.handleErrorCall, RpcError.handleSomeException]

0 comments on commit 0b89701

Please sign in to comment.