summaryrefslogtreecommitdiffstats
path: root/server/monitor/monitor.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-02-02 09:47:58 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-02-05 09:43:42 -0500
commita9402e5d8e75f7f361a5754e91180ed4f4ee98e1 (patch)
tree758a40968c728990438fbb404bb7fd885aaddfcf /server/monitor/monitor.c
parent45febf05db2be90441119d96a53e56be22dc1e96 (diff)
downloadsssd-a9402e5d8e75f7f361a5754e91180ed4f4ee98e1.tar.gz
sssd-a9402e5d8e75f7f361a5754e91180ed4f4ee98e1.tar.xz
sssd-a9402e5d8e75f7f361a5754e91180ed4f4ee98e1.zip
Enable debug_timestamps by default
It can be overridden in the sssd.conf or on the commandline with --debug-timestamps=0
Diffstat (limited to 'server/monitor/monitor.c')
-rw-r--r--server/monitor/monitor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c
index 85f69c113..ef8ede0e3 100644
--- a/server/monitor/monitor.c
+++ b/server/monitor/monitor.c
@@ -1046,7 +1046,7 @@ static int get_service_config(struct mt_ctx *ctx, const char *name,
SSSD_LIBEXEC_PATH,
svc->name, debug_level,
(debug_timestamps?
- " --debug-timestamps":""),
+ "": " --debug-timestamps=0"),
(debug_to_file ?
" --debug-to-files":""));
if (!svc->command) {
@@ -1171,7 +1171,7 @@ static int get_provider_config(struct mt_ctx *ctx, const char *name,
svc->command = talloc_asprintf(svc,
"%s/sssd_be -d %d%s%s --domain %s",
SSSD_LIBEXEC_PATH, debug_level,
- (debug_timestamps?" --debug-timestamps":""),
+ (debug_timestamps?"": " --debug-timestamps=0"),
(debug_to_file?" --debug-to-files":""),
svc->name);
if (!svc->command) {