mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
when counting available descs, say whether we're counting exits
This commit is contained in:
parent
ecb619d96b
commit
06d367ea36
@ -1269,8 +1269,9 @@ count_usable_descriptors(int *num_present, int *num_usable,
|
||||
}
|
||||
SMARTLIST_FOREACH_END(rs);
|
||||
|
||||
log_debug(LD_DIR, "%d usable, %d present (%s).", *num_usable, *num_present,
|
||||
md ? "microdescs" : "descs");
|
||||
log_debug(LD_DIR, "%d usable, %d present (%s%s).",
|
||||
*num_usable, *num_present,
|
||||
md ? "microdesc" : "desc", exit_only ? " exits" : "s");
|
||||
}
|
||||
|
||||
/** We just fetched a new set of descriptors. Compute how far through
|
||||
|
Loading…
Reference in New Issue
Block a user