From 387349ae092f6dbeb8e4bca291a772695836629c Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Tue, 10 Apr 2012 11:06:56 +0200 Subject: 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 --- src/util/check_and_open.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/check_and_open.c') diff --git a/src/util/check_and_open.c b/src/util/check_and_open.c index 27ef1c88..c6261917 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; } -- cgit