diff options
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 00b77d8370..f65c20f2a0 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -91,7 +91,9 @@ rend_client_send_introduction(origin_circuit_t *introcirc, } }); if (!intro_key) { - log_warn(LD_BUG, "Internal error: could not find intro key."); + log_warn(LD_BUG, "Internal error: could not find intro key; we " + "only have a v2 rend desc with %d intro points.", + smartlist_len(entry->parsed->intro_nodes)); goto err; } if (crypto_pk_get_digest(intro_key, payload)<0) { |