]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Log even more to try to debug 22719
authorNick Mathewson <nickm@torproject.org>
Sat, 24 Jun 2017 17:40:02 +0000 (13:40 -0400)
committerNick Mathewson <nickm@torproject.org>
Sat, 24 Jun 2017 17:40:02 +0000 (13:40 -0400)
src/common/compress.c

index 4e19080c0b21be97c9b0f4e3f05ab4069f8aa5ae..472268a439829fb3f7ed7c97b488442f9ee344a4 100644 (file)
@@ -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;
   }