aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Baines <cb15g11@soton.ac.uk>2014-04-02 19:59:42 +0100
committerChristopher Baines <cb15g11@soton.ac.uk>2014-04-02 19:59:42 +0100
commit7eff48a795d8e4b50fce0f272443dafb35d88eb8 (patch)
tree682aaa78e1b6a5d3215a6e3fe3614509a2d7ab65
parent4f62bf81182ffed7da9d8ca30969da43ab151c7f (diff)
downloadtor-7eff48a795d8e4b50fce0f272443dafb35d88eb8.tar
tor-7eff48a795d8e4b50fce0f272443dafb35d88eb8.tar.gz
Change log messages to debug
-rw-r--r--src/or/circuitbuild.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c
index 127ddd5bd..5f0271777 100644
--- a/src/or/circuitbuild.c
+++ b/src/or/circuitbuild.c
@@ -2162,9 +2162,9 @@ extend_info_free(extend_info_t *info)
{
if (!info)
return;
- log_info(LD_REND, "calling crypto_pk_free");
+ log_debug(LD_REND, "calling crypto_pk_free");
crypto_pk_free(info->onion_key);
- log_info(LD_REND, "calling tor_free");
+ log_debug(LD_REND, "calling tor_free");
tor_free(info);
}