Skip to content

Commit

Permalink
Merge pull request #78 from goerli/s1-logging-shutdown
Browse files Browse the repository at this point in the history
client: warn on unable to get mut ref for engine for shutdown
  • Loading branch information
soc1c committed Mar 23, 2019
2 parents 3ec8ab6 + 0f81a29 commit f3e2fae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ethcore/src/client/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2519,7 +2519,7 @@ impl Drop for Client {
if let Some(c) = Arc::get_mut(&mut self.engine) {
c.stop()
} else {
trace!(target: "shutdown", "unable to get mut ref for engine for shutdown.");
warn!(target: "shutdown", "unable to get mut ref for engine for shutdown.");
}
}
}
Expand Down

0 comments on commit f3e2fae

Please sign in to comment.