diff options
-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; |