Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
parity
Mirrored projects
jsonrpsee
Commits
49f260eb
Unverified
Commit
49f260eb
authored
Aug 29, 2022
by
Niklas Adolfsson
Committed by
GitHub
Aug 29, 2022
Browse files
downgrade connection log to debug (#865)
parent
42930f07
Pipeline
#211042
passed with stages
in 5 minutes and 50 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
client/transport/src/ws/mod.rs
View file @
49f260eb
...
...
@@ -298,7 +298,7 @@ impl WsTransportClientBuilder {
// Perform the initial handshake.
match
client
.handshake
()
.await
{
Ok
(
ServerResponse
::
Accepted
{
..
})
=>
{
tracing
::
info
!
(
"Connection established to target: {:?}"
,
target
);
tracing
::
debug
!
(
"Connection established to target: {:?}"
,
target
);
let
mut
builder
=
client
.into_builder
();
builder
.set_max_message_size
(
self
.max_request_body_size
as
usize
);
let
(
sender
,
receiver
)
=
builder
.finish
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment