diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-06-24 13:40:02 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-06-24 13:40:02 -0400 |
commit | acbe16a9a244d9745080ca435cc3587412920caa (patch) | |
tree | 7416ac901dcd1fe2384e84da8eafcafc5fbd45a6 /src/common/compress.c | |
parent | 6caf924605fd8c79193605e1618109db51c43967 (diff) | |
download | tor-acbe16a9a244d9745080ca435cc3587412920caa.tar.gz tor-acbe16a9a244d9745080ca435cc3587412920caa.zip |
Log even more to try to debug 22719
Diffstat (limited to 'src/common/compress.c')
-rw-r--r-- | src/common/compress.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/compress.c b/src/common/compress.c index 4e19080c0b..472268a439 100644 --- a/src/common/compress.c +++ b/src/common/compress.c @@ -575,8 +575,10 @@ tor_compress_process(tor_compress_state_t *state, *in_len == in_len_orig && *out_len == out_len_orig)) { log_warn(LD_GENERAL, - "More info on the bug: *in_len == in_len_orig == %lu, " + "More info on the bug: method == %s, finish == %d, " + " *in_len == in_len_orig == %lu, " "*out_len == out_len_orig == %lu", + compression_method_get_human_name(state->method), finish, (unsigned long)in_len_orig, (unsigned long)out_len_orig); return TOR_COMPRESS_ERROR; } |