Skip to content

Commit

Permalink
Merge branch 'maint-0.3.5'
Browse files Browse the repository at this point in the history
  • Loading branch information
nmathewson committed Dec 14, 2018
2 parents 69264f9 + 94a7998 commit f8dac5c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions changes/ticket28731
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
o Minor features (bootstrap):
- Add the bootstrap tag name to the log messages, so people
troubleshooting connection problems can look up a symbol instead
of a number. Closes ticket 28731.
6 changes: 3 additions & 3 deletions src/feature/control/control_bootstrap.c
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ control_event_bootstrap_core(int loglevel, bootstrap_status_t status,
status = progress;

tor_log(loglevel, LD_CONTROL,
"Bootstrapped %d%%: %s", status, summary);
"Bootstrapped %d%% (%s): %s", status, tag, summary);
tor_snprintf(buf, sizeof(buf),
"BOOTSTRAP PROGRESS=%d TAG=%s SUMMARY=\"%s\"",
status, tag, summary);
Expand Down Expand Up @@ -282,9 +282,9 @@ control_event_bootstrap_problem(const char *warn, const char *reason,
hostaddr = tor_strdup("?");

log_fn(severity,
LD_CONTROL, "Problem bootstrapping. Stuck at %d%%: %s. (%s; %s; "
LD_CONTROL, "Problem bootstrapping. Stuck at %d%% (%s): %s. (%s; %s; "
"count %d; recommendation %s; host %s at %s)",
status, summary, warn, reason,
status, tag, summary, warn, reason,
bootstrap_problems, recommendation,
or_id, hostaddr);

Expand Down

0 comments on commit f8dac5c

Please sign in to comment.