diff options
author | Pavel Březina <pbrezina@redhat.com> | 2012-08-07 09:55:38 +0200 |
---|---|---|
committer | Jakub Hrozek <jhrozek@redhat.com> | 2012-08-07 11:39:16 +0200 |
commit | 33dd2356d5b2cadf14e912a0e9f7a8a56f6bc5f1 (patch) | |
tree | 73e6d7e898f0331b7dd3d7f070df93a0c982d378 /src | |
parent | 249d3b8c72798a8eb081b620cc94072b3e8d6351 (diff) | |
download | sssd-33dd2356d5b2cadf14e912a0e9f7a8a56f6bc5f1.tar.gz sssd-33dd2356d5b2cadf14e912a0e9f7a8a56f6bc5f1.tar.xz sssd-33dd2356d5b2cadf14e912a0e9f7a8a56f6bc5f1.zip |
Add end of line to debug message
Diffstat (limited to 'src')
-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 201d9fa8d..1b3107669 100644 --- a/src/monitor/monitor.c +++ b/src/monitor/monitor.c @@ -2522,8 +2522,8 @@ int main(int argc, const char *argv[]) "Cannot read config file %s, please check if permissions " "are 0600 and the file is owned by root.root", config_file); } else { - DEBUG(1, ("Error loading configuration database: [%d]: %s", - ret, strerror(ret))); + DEBUG(SSSDBG_CRIT_FAILURE, ("Error loading configuration database: " + "[%d]: %s\n", ret, strerror(ret))); sss_log(SSS_LOG_ALERT, "Cannot load configuration database"); } return 4; |