diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2019-01-21 12:06:46 +0200 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2019-01-23 10:37:10 -0500 |
commit | 712a622fcecd43a7a50c7b35a9811f1210aeadb8 (patch) | |
tree | e4bf88dad1956a631e987bd23fd51cd70f098a62 /src/feature/hs/hs_cache.c | |
parent | f9050681c032bd339bdf6314c9ee8e577d37cedc (diff) | |
download | tor-712a622fcecd43a7a50c7b35a9811f1210aeadb8.tar.gz tor-712a622fcecd43a7a50c7b35a9811f1210aeadb8.zip |
Log an HSDesc we failed to parse at Debug loglevel
Diffstat (limited to 'src/feature/hs/hs_cache.c')
-rw-r--r-- | src/feature/hs/hs_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/feature/hs/hs_cache.c b/src/feature/hs/hs_cache.c index 82ce686424..05f9940ae6 100644 --- a/src/feature/hs/hs_cache.c +++ b/src/feature/hs/hs_cache.c @@ -778,8 +778,8 @@ hs_cache_store_as_client(const char *desc_str, /* Create client cache descriptor object */ client_desc = cache_client_desc_new(desc_str, identity_pk); if (!client_desc) { - log_warn(LD_GENERAL, "Failed to parse received descriptor %s.", - escaped(desc_str)); + log_warn(LD_GENERAL, "HSDesc parsing failed!"); + log_debug(LD_GENERAL, "Failed to parse HSDesc: %s.", escaped(desc_str)); goto err; } |