Quiet "caching debian-tor for debian-tor" notice

This commit is contained in:
Nick Mathewson 2015-02-19 12:30:34 -05:00
parent 7b03e9a8c7
commit 251f6cfcd8

View File

@ -1793,8 +1793,8 @@ tor_getpwnam(const char *username)
if ((pw = getpwnam(username))) { if ((pw = getpwnam(username))) {
tor_passwd_free(passwd_cached); tor_passwd_free(passwd_cached);
passwd_cached = tor_passwd_dup(pw); passwd_cached = tor_passwd_dup(pw);
log_notice(LD_GENERAL, "Caching new entry %s for %s", log_info(LD_GENERAL, "Caching new entry %s for %s",
passwd_cached->pw_name, username); passwd_cached->pw_name, username);
return pw; return pw;
} }