diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-02-23 13:04:03 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-02-23 13:04:03 -0500 |
commit | d74a78c58aa5483f6586f80a746422cd2798c000 (patch) | |
tree | db5129479042a4fbdd6689949e7ac84e73b70ea6 /src/common | |
parent | 098cbcbb9ec13861b8c95f6ba5b1581177a1971a (diff) | |
parent | d221b507c9b014039a94aa91bed082689342e347 (diff) | |
download | tor-d74a78c58aa5483f6586f80a746422cd2798c000.tar.gz tor-d74a78c58aa5483f6586f80a746422cd2798c000.zip |
Merge branch 'bug14950_logs_squashed'
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/compat.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; } |