Skip to content

Commit

Permalink
fix Log.warn
Browse files Browse the repository at this point in the history
  • Loading branch information
s12f committed Sep 27, 2023
1 parent aaa6a03 commit c118cea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hstream-io/HStream/IO/IOTask.hs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ handleConnectorRequest ioTask MSG.ConnectorRequest{..} = do
MSG.ConnectorResponse crId <$> E.catch
(handleConnectorMessage ioTask crMessage)
(\(e :: E.SomeException) -> do
Log.warn $ "handleConnectorRequest failed:" <> Log.buildString (show e) <> "ignored"
Log.warning $ "handleConnectorRequest failed:" <> Log.buildString (show e) <> "ignored"
pure J.Null)

handleConnectorMessage :: IOTask -> MSG.ConnectorMessage -> IO J.Value
Expand Down

0 comments on commit c118cea

Please sign in to comment.