Skip to content

Commit d724a4f

Browse files
committed
cli: show default app context at all log levels
1 parent 8fa9a2e commit d724a4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/hix/lib/Hix/Monad.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,15 +295,15 @@ appContextT ::
295295
t M a ->
296296
t M a
297297
appContextT =
298-
appContextAtT LogVerbose LogInfo
298+
appContextAtT LogVerbose LogError
299299

300300
appContextAt :: LogLevel -> LogLevel -> Text -> M a -> M a
301301
appContextAt logLevel level description ma =
302302
runIdentityT do
303303
appContextAtT logLevel level description (IdentityT ma)
304304

305305
appContext :: Text -> M a -> M a
306-
appContext = appContextAt LogVerbose LogInfo
306+
appContext = appContextAt LogVerbose LogError
307307

308308
appContextVerbose :: Text -> M a -> M a
309309
appContextVerbose desc ma = do

0 commit comments

Comments
 (0)