From a9402e5d8e75f7f361a5754e91180ed4f4ee98e1 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Tue, 2 Feb 2010 09:47:58 -0500 Subject: Enable debug_timestamps by default It can be overridden in the sssd.conf or on the commandline with --debug-timestamps=0 --- server/monitor/monitor.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'server/monitor') diff --git a/server/monitor/monitor.c b/server/monitor/monitor.c index 85f69c11..ef8ede0e 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) { -- cgit