mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
r14859@catbus: nickm | 2007-08-30 17:10:15 -0400
0-pad minutes and seconds when displaying weighted mtbf in info logs. svn:r11324
This commit is contained in:
parent
ca24362cf8
commit
5da6321b76
2
doc/TODO
2
doc/TODO
@ -41,7 +41,7 @@ Things we'd like to do in 0.2.0.x:
|
|||||||
- Tor logs the libevent version on startup, for debugging purposes.
|
- Tor logs the libevent version on startup, for debugging purposes.
|
||||||
This is great. But it does this before configuring the logs, so
|
This is great. But it does this before configuring the logs, so
|
||||||
it only goes to stdout and is then lost.
|
it only goes to stdout and is then lost.
|
||||||
- Aug 30 16:57:41.196 [info] OR (unknown) [8DEF1682406EDE71479E98A4AEB1F27829911106]: 11/141 good connections; uptime 6748/319666 sec (2.11%); wmtbf 4:6:16
|
o Aug 30 [...] wmtbf 4:6:16
|
||||||
The wmtbf time value is missing some zero-pads.
|
The wmtbf time value is missing some zero-pads.
|
||||||
|
|
||||||
- Proposals:
|
- Proposals:
|
||||||
|
@ -469,7 +469,7 @@ rep_hist_dump_stats(time_t now, int severity)
|
|||||||
}
|
}
|
||||||
log(severity, LD_GENERAL,
|
log(severity, LD_GENERAL,
|
||||||
"OR %s [%s]: %ld/%ld good connections; uptime %ld/%ld sec (%.2f%%); "
|
"OR %s [%s]: %ld/%ld good connections; uptime %ld/%ld sec (%.2f%%); "
|
||||||
"wmtbf %lu:%lu:%lu",
|
"wmtbf %lu:%02lu:%02lu",
|
||||||
name1, hexdigest1,
|
name1, hexdigest1,
|
||||||
or_history->n_conn_ok, or_history->n_conn_fail+or_history->n_conn_ok,
|
or_history->n_conn_ok, or_history->n_conn_fail+or_history->n_conn_ok,
|
||||||
upt, upt+downt, uptime*100.0,
|
upt, upt+downt, uptime*100.0,
|
||||||
|
Loading…
Reference in New Issue
Block a user