From: Nick Mathewson Date: Thu, 19 Feb 2015 17:30:34 +0000 (-0500) Subject: Quiet "caching debian-tor for debian-tor" notice X-Git-Tag: tor-0.2.7.0-root~2^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=251f6cfcd829d3f7b8ac7bce8477a6e14ad47a1e;p=thirdparty%2Ftor.git Quiet "caching debian-tor for debian-tor" notice --- diff --git a/src/common/compat.c b/src/common/compat.c index fde65d9d15..1788e32ee3 100644 --- a/src/common/compat.c +++ b/src/common/compat.c @@ -1793,8 +1793,8 @@ tor_getpwnam(const char *username) if ((pw = getpwnam(username))) { tor_passwd_free(passwd_cached); passwd_cached = tor_passwd_dup(pw); - log_notice(LD_GENERAL, "Caching new entry %s for %s", - passwd_cached->pw_name, username); + log_info(LD_GENERAL, "Caching new entry %s for %s", + passwd_cached->pw_name, username); return pw; }