Skip to content

Commit

Permalink
Additional healthcheck logging
Browse files Browse the repository at this point in the history
  • Loading branch information
jstuczyn committed Jan 17, 2020
1 parent 781c4c5 commit f966df4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion common/healthcheck/src/path_check.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use crypto::identity::{DummyMixIdentityKeyPair, MixnetIdentityKeyPair, MixnetIdentityPublicKey};
use itertools::Itertools;
use log::{debug, error, warn};
use log::{debug, error, trace, warn};
use mix_client::MixClient;
use provider_client::ProviderClient;
use sphinx::header::delays::Delay;
Expand Down Expand Up @@ -131,6 +131,7 @@ impl PathChecker {
Ok(messages) => {
let mut should_stop = false;
for msg in messages.into_iter() {
trace!("received provider response: {:?}", msg);
if msg == sfw_provider_requests::DUMMY_MESSAGE_CONTENT {
// finish iterating the loop as the messages might not be ordered
should_stop = true;
Expand Down

0 comments on commit f966df4

Please sign in to comment.