diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-02-01 16:23:26 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-02-01 16:23:26 -0500 |
commit | ec90ed4f6d1155d28fde91097e76f574195583c6 (patch) | |
tree | 4f5206f962fd83770d094055fa32a21121e5a200 /src/or/relay.c | |
parent | fd492263859c7f7c5801df9d2cc99b767bd660ef (diff) | |
parent | 7301339e33bd15af777958ed884fbeadc5c0b10f (diff) | |
download | tor-ec90ed4f6d1155d28fde91097e76f574195583c6.tar.gz tor-ec90ed4f6d1155d28fde91097e76f574195583c6.zip |
Merge branch 'rename_log_7599'
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 1289f7ddbb..3ae5b47ba5 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -2024,8 +2024,9 @@ dump_cell_pool_usage(int severity) n_cells += TO_OR_CIRCUIT(c)->p_chan_cells.n; ++n_circs; } - log(severity, LD_MM, "%d cells allocated on %d circuits. %d cells leaked.", - n_cells, n_circs, total_cells_allocated - n_cells); + tor_log(severity, LD_MM, + "%d cells allocated on %d circuits. %d cells leaked.", + n_cells, n_circs, total_cells_allocated - n_cells); mp_pool_log_status(cell_pool, severity); } |