/* Debugging. */
char srv_hash_encoded[SR_SRV_VALUE_BASE64_LEN + 1];
sr_srv_encode(srv_hash_encoded, sizeof(srv_hash_encoded), srv);
- log_debug(LD_DIR, "SR: Generated SRV: %s", srv_hash_encoded);
+ log_info(LD_DIR, "SR: Generated SRV: %s", srv_hash_encoded);
}
return srv;
}
case SR_PHASE_COMMIT:
/* Already having a commit for an authority so ignore this one. */
if (saved_commit) {
- log_debug(LD_DIR, "SR: Ignoring known commit during COMMIT phase.");
+ /* Receiving known commits should happen naturally since commit phase
+ lasts multiple rounds. However if the commitment value changes
+ during commit phase, it might be a bug so log more loudly. */
+ if (!commitments_are_the_same(commit, saved_commit)) {
+ log_info(LD_DIR, "SR: Received altered commit from %s in commit phase.",
+ sr_commit_get_rsa_fpr(commit));
+ } else {
+ log_debug(LD_DIR, "SR: Ignoring known commit during commit phase.");
+ }
goto ignore;
}
state_set(parsed_state);
disk_state_set(disk_state);
tor_free(content);
- log_notice(LD_DIR, "SR: State loaded successfully from file %s", fname);
+ log_info(LD_DIR, "SR: State loaded successfully from file %s", fname);
return 0;
error:
{ /* Debugging. */
char tbuf[ISO_TIME_LEN + 1];
format_iso_time(tbuf, valid_after);
- log_info(LD_DIR, "SR: State prepared for new voting period (%s). "
- "Current phase is %s (%d commit & %d reveal rounds).",
+ log_info(LD_DIR, "SR: State prepared for upcoming voting period (%s). "
+ "Upcoming phase is %s (counters: %d commit & %d reveal rounds).",
tbuf, get_phase_str(sr_state->phase),
sr_state->n_commit_rounds, sr_state->n_reveal_rounds);
}