Slightly better logging messages

This commit is contained in:
Jedrzej Stuczynski
2020-02-03 11:51:01 +00:00
parent 04e415eb0c
commit e091d30f6e
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -144,7 +144,7 @@ impl HealthCheckResult {
}
}
info!(
debug!(
"waiting {:?} for pending requests to resolve",
resolution_timeout
);
+2 -1
View File
@@ -94,6 +94,7 @@ impl NymClient {
// generate same type of keys we have as our identity
let healthcheck_keys = MixIdentityKeyPair::new();
info!("Trying to obtain initial compatible network topology before starting up rest of modules");
// TODO: when we switch to our graph topology, we need to remember to change 'Topology' type
let topology_controller = rt.block_on(topology_control::TopologyControl::<Topology>::new(
self.config.get_directory_server(),
@@ -117,7 +118,7 @@ impl NymClient {
// registration
if let Err(err) = rt.block_on(provider_poller.perform_initial_registration()) {
panic!("Failed to perform initial registration: {:?}", err);
panic!("Failed to perform initial provider registration: {:?}", err);
};
// setup all of futures for the components running on the client
+1 -1
View File
@@ -45,7 +45,7 @@ impl ProviderPoller {
self.provider_client.update_token(auth_token)
} else {
warn!("did not perform registration - we were already registered")
warn!("did not perform provider registration - we were already registered")
}
Ok(())