summaryrefslogtreecommitdiffstats
path: root/src/util/check_and_open.c
diff options
context:
space:
mode:
authorStef Walter <stefw@gnome.org>2012-04-10 11:06:56 +0200
committerStephen Gallagher <sgallagh@redhat.com>2012-06-20 07:41:04 -0400
commit387349ae092f6dbeb8e4bca291a772695836629c (patch)
tree2ea9b60028f73a61923df5bd0bcf96454b42471d /src/util/check_and_open.c
parent8e1d9a326a6cf88405344077a309cbe3898653c9 (diff)
downloadsssd-387349ae092f6dbeb8e4bca291a772695836629c.tar.gz
sssd-387349ae092f6dbeb8e4bca291a772695836629c.tar.xz
sssd-387349ae092f6dbeb8e4bca291a772695836629c.zip
Move some debug lines to new debug log levels
* These are common lines of debug output when starting up sssd https://bugzilla.redhat.com/show_bug.cgi?id=811113
Diffstat (limited to 'src/util/check_and_open.c')
-rw-r--r--src/util/check_and_open.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/check_and_open.c b/src/util/check_and_open.c
index 27ef1c883..c62619171 100644
--- a/src/util/check_and_open.c
+++ b/src/util/check_and_open.c
@@ -50,8 +50,8 @@ errno_t check_file(const char *filename, const int uid, const int gid,
ret = follow_symlink ? stat(filename, stat_buf) : \
lstat(filename, stat_buf);
if (ret == -1) {
- DEBUG(1, ("lstat for [%s] failed: [%d][%s].\n", filename, errno,
- strerror(errno)));
+ DEBUG(SSSDBG_TRACE_FUNC, ("lstat for [%s] failed: [%d][%s].\n", filename, errno,
+ strerror(errno)));
return errno;
}