We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6fc0f9b commit 5b01543Copy full SHA for 5b01543
src/Network/Mattermost/Connection.hs
@@ -137,8 +137,9 @@ submitRequest cd mToken method uri payload = do
137
}
138
139
go = withConnection cd $ \con -> do
140
- runLogger cd "submitRequest" (HttpRequest method uri Nothing)
+ runLogger cd "submitRequest (request)" (HttpRequest method uri Nothing)
141
result <- HTTP.simpleHTTP_ con request
142
+ runLogger cd "submitRequest (response)" (HttpRequest method uri Nothing)
143
case result of
144
Left e -> return $ Left e
145
Right response -> do
0 commit comments