]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Quiet "caching debian-tor for debian-tor" notice
authorNick Mathewson <nickm@torproject.org>
Thu, 19 Feb 2015 17:30:34 +0000 (12:30 -0500)
committerNick Mathewson <nickm@torproject.org>
Thu, 19 Feb 2015 17:30:34 +0000 (12:30 -0500)
src/common/compat.c

index fde65d9d15177c3a5fc0fa590cc6b63c83eb8e60..1788e32ee389eea00a2236fd2173a3fc47da4d16 100644 (file)
@@ -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;
   }