diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-01 16:19:02 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-01 16:19:02 -0500 |
commit | 7301339e33bd15af777958ed884fbeadc5c0b10f (patch) | |
tree | 095e67dd8e0acdb7c4653352484b1c0f088a16b0 /src/or/circuitlist.c | |
parent | 1dd03fbc77a0280479f81aeccf24aac63c37cd08 (diff) | |
download | tor-7301339e33bd15af777958ed884fbeadc5c0b10f.tar.gz tor-7301339e33bd15af777958ed884fbeadc5c0b10f.zip |
fix wide lines from tor_log rename
Diffstat (limited to 'src/or/circuitlist.c')
-rw-r--r-- | src/or/circuitlist.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index 8a378c0a0c..6987dc42fd 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -783,8 +783,8 @@ circuit_dump_conn_details(int severity, int this_circid, int other_circid) { - tor_log(severity, LD_CIRC, "Conn %d has %s circuit: circID %d (other side %d), " - "state %d (%s), born %ld:", + tor_log(severity, LD_CIRC, "Conn %d has %s circuit: circID %d " + "(other side %d), state %d (%s), born %ld:", conn_array_index, type, this_circid, other_circid, circ->state, circuit_state_to_string(circ->state), (long)circ->timestamp_began.tv_sec); @@ -846,8 +846,8 @@ circuit_dump_chan_details(int severity, int this_circid, int other_circid) { - tor_log(severity, LD_CIRC, "Conn %p has %s circuit: circID %d (other side %d), " - "state %d (%s), born %ld:", + tor_log(severity, LD_CIRC, "Conn %p has %s circuit: circID %d " + "(other side %d), state %d (%s), born %ld:", chan, type, this_circid, other_circid, circ->state, circuit_state_to_string(circ->state), (long)circ->timestamp_began.tv_sec); |