Skip to content

Commit

Permalink
Include operator address as well
Browse files Browse the repository at this point in the history
  • Loading branch information
comnik committed Jul 31, 2019
1 parent d7ee392 commit 32e04c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tdiag/src/commands/arrangements.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ pub fn listen(
.filter(|(_, worker, _)| *worker == 0)
.flat_map(|(t, _, x)| {
if let Operates(event) = x {
Some(((event.id, event.name), t, 1 as isize))
Some(((event.id, format!("{} ({:?})", event.name, event.addr)), t, 1 as isize))
} else {
None
}
Expand Down

0 comments on commit 32e04c8

Please sign in to comment.