diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-12-09 05:37:26 +0000 |
commit | 39265dd72e9285ea61a0d2a16d7e80050ced546e (patch) | |
tree | 1affb9adb311c31f0c4e4613653940713655c21c /src/or/hibernate.c | |
parent | 95e471c9a65f36776cb1fb9ccbcef4890640d7f4 (diff) | |
download | tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.tar.gz tor-39265dd72e9285ea61a0d2a16d7e80050ced546e.zip |
In my private little universe, terminals are still 80 columns. Impose a 160-character-per-line limit; this will creep down.
svn:r5548
Diffstat (limited to 'src/or/hibernate.c')
-rw-r--r-- | src/or/hibernate.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/or/hibernate.c b/src/or/hibernate.c index 4024a11345..e0d8a0fff7 100644 --- a/src/or/hibernate.c +++ b/src/or/hibernate.c @@ -614,7 +614,11 @@ read_bandwidth_usage(void) interval_start_time = t1; expected_bandwidth_usage = expected_bw; - info(LD_ACCT, "Successfully read bandwidth accounting file written at %s for interval starting at %s. We have been active for %lu seconds in this interval. At the start of the interval, we expected to use about %lu KB per second. ("U64_FORMAT" bytes read so far, "U64_FORMAT" bytes written so far)", + info(LD_ACCT, "Successfully read bandwidth accounting file written at %s " + "for interval starting at %s. We have been active for %lu seconds in " + "this interval. At the start of the interval, we expected to use " + "about %lu KB per second. ("U64_FORMAT" bytes read so far, " + U64_FORMAT" bytes written so far)", (char*)smartlist_get(elts,2), (char*)smartlist_get(elts,1), (unsigned long)n_seconds_active_in_interval, |