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
polkadot
Commits
675fd262
Commit
675fd262
authored
Nov 24, 2020
by
Peter Goodspeed-Niklaus
Browse files
REVERT ME: more tracing logging
parent
e09e1564
Pipeline
#114914
failed with stages
in 21 minutes and 18 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
node/overseer/src/lib.rs
View file @
675fd262
...
...
@@ -1488,8 +1488,21 @@ where
}
}
AllMessages
::
CandidateBacking
(
msg
)
=>
{
{
if
let
CandidateBackingMessage
::
GetBackedCandidates
(
relay_parent
,
..
)
=
&
msg
{
tracing
::
info!
(
target
:
LOG_TARGET
,
relay_parent
=
?
relay_parent
,
"Overseer passing along CandidateBackingMessage::GetBackedCandidates"
);
}
}
if
let
Some
(
ref
mut
s
)
=
self
.candidate_backing_subsystem.instance
{
let
_
=
s
.tx
.send
(
FromOverseer
::
Communication
{
msg
})
.await
;
let
send_result
=
s
.tx
.send
(
FromOverseer
::
Communication
{
msg
})
.await
;
tracing
::
info!
(
target
:
LOG_TARGET
,
send_result
=
?
send_result
,
"Overseer sent message to candidate backing subsystem instance"
,
);
}
else
{
tracing
::
warn!
(
target
:
LOG_TARGET
,
"Overseer candidate backing subsystem instance missing"
);
}
}
AllMessages
::
CandidateSelection
(
msg
)
=>
{
...
...
node/subsystem-util/src/lib.rs
View file @
675fd262
...
...
@@ -636,6 +636,8 @@ impl<Spawner: SpawnNamed, Job: 'static + JobTrait> Jobs<Spawner, Job> {
tracing
::
debug!
(
job
=
Job
::
NAME
,
"failed to send message to job, will remove it"
);
job
.remove
();
}
}
else
{
tracing
::
warn!
(
relay_parent
=
?
parent_hash
,
"received message for unknown job"
);
}
}
}
...
...
gabriel klawitter
🏄
@gabriel
mentioned in commit
56c8f3ff
·
Nov 26, 2020
mentioned in commit
56c8f3ff
mentioned in commit 56c8f3ff6ab01779cd5dcdd22daab1dd4e6b4aad
Toggle commit list
gabriel klawitter
🏄
@gabriel
mentioned in commit
113ae827
·
Dec 04, 2020
mentioned in commit
113ae827
mentioned in commit 113ae8272ecf2133272b9373123ffb4f74a00425
Toggle commit list
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