Skip to content

Commit

Permalink
update logs
Browse files Browse the repository at this point in the history
  • Loading branch information
zkokelj committed Jan 23, 2024
1 parent 2019eac commit 6e44e5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/walletextension/userconn/user_conn.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func NewUserConnWS(resp http.ResponseWriter, req *http.Request, logger gethlog.L
if err != nil {
err = fmt.Errorf("unable to upgrade to websocket connection - %w", err)
_, _ = resp.Write([]byte(err.Error()))
logger.Error("unable to upgrade to websocket connection", log.ErrKey, err)
logger.Error(fmt.Sprintf("unable to upgrade to websocket connection for request url: %s with parameters: %s", req.URL, req.Body), log.ErrKey, err)
return nil, err
}

Expand Down

0 comments on commit 6e44e5f

Please sign in to comment.