diff options
author | Linus Nordberg <linus@nordberg.se> | 2012-03-19 05:12:19 +0100 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2012-03-19 05:12:19 +0100 |
commit | 341e37e38c8b341097ed0fcd3d396dca00578f47 (patch) | |
tree | 5aaa05c6f24dcc8b454dc8a9eecaf5c98f336d75 /src/or/router.c | |
parent | bb2135fea68b53b4e75795c7b1bd632ce4f0d459 (diff) | |
download | tor-341e37e38c8b341097ed0fcd3d396dca00578f47.tar.gz tor-341e37e38c8b341097ed0fcd3d396dca00578f47.zip |
Move the logging of 'My line' to debug level (#5151).
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index d86c5f3e39..fa89e614c0 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -1997,7 +1997,7 @@ router_dump_router_to_string(char *s, size_t maxlen, routerinfo_t *router, if (a) { tor_asprintf(&extra_or_address, "or-address %s:%d\n", a, router->ipv6_orport); - log_notice(LD_OR, "My line is <%s>", extra_or_address); + log_debug(LD_OR, "My or-address line is <%s>", extra_or_address); } } |