diff options
author | Stef Walter <stefw@gnome.org> | 2012-04-10 11:06:56 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-06-20 07:41:04 -0400 |
commit | 387349ae092f6dbeb8e4bca291a772695836629c (patch) | |
tree | 2ea9b60028f73a61923df5bd0bcf96454b42471d /src/monitor | |
parent | 8e1d9a326a6cf88405344077a309cbe3898653c9 (diff) | |
download | sssd-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/monitor')
-rw-r--r-- | src/monitor/monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/monitor/monitor.c b/src/monitor/monitor.c index 041f576e..1cc092f8 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -2078,7 +2078,7 @@ static int monitor_service_init(struct sbus_connection *conn, void *data) struct mon_init_conn *mini; struct timeval tv; - DEBUG(3, ("Initializing D-BUS Service\n")); + DEBUG(SSSDBG_TRACE_FUNC, ("Initializing D-BUS Service\n")); ctx = talloc_get_type(data, struct mt_ctx); @@ -2447,7 +2447,7 @@ int main(int argc, const char *argv[]) uid = getuid(); if (uid != 0) { - DEBUG(1, ("Running under %d, must be root\n", uid)); + DEBUG(SSSDBG_FATAL_FAILURE, ("Running under %d, must be root\n", uid)); sss_log(SSS_LOG_ALERT, "sssd must be run as root"); return 8; } |