From: Ronnie Sahlberg Date: Wed, 15 Aug 2007 05:08:42 +0000 (+1000) Subject: add text to the event script timeout log on how to find out which script X-Git-Tag: tevent-0.9.20~348^2~2441^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7322e82bcb3b1f3e2bf4f0bef04d385513f7de04;p=thirdparty%2Fsamba.git add text to the event script timeout log on how to find out which script timed out (This used to be ctdb commit bd6db995fb00ed45c5f0a50bbe6cf5d0fe22a194) --- diff --git a/ctdb/server/eventscript.c b/ctdb/server/eventscript.c index 6c661d7cc6b..2b30209cf33 100644 --- a/ctdb/server/eventscript.c +++ b/ctdb/server/eventscript.c @@ -178,7 +178,7 @@ static void ctdb_event_script_timeout(struct event_context *ev, struct timed_eve void *private_data = state->private_data; struct ctdb_context *ctdb = state->ctdb; - DEBUG(0,("event script timed out\n")); + DEBUG(0,("event script timed out. Increase debuglevel to 1 or higher to see which script timedout.\n")); talloc_free(state); callback(ctdb, -1, private_data); }