1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

ctdb-daemon: Log complete eventd startup command

BUG: https://bugzilla.samba.org/show_bug.cgi?id=13592

Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
This commit is contained in:
Martin Schwenke 2018-09-03 16:12:16 +10:00 committed by Amitay Isaacs
parent 74357bf347
commit 6d3d9a85e5

View File

@ -263,8 +263,12 @@ int ctdb_start_eventd(struct ctdb_context *ctdb)
return -1;
}
DEBUG(DEBUG_NOTICE,
("Starting event daemon %s %s %s\n", argv[0], argv[1], argv[2]));
D_NOTICE("Starting event daemon %s %s %s %s %s\n",
argv[0],
argv[1],
argv[2],
argv[3],
argv[4]);
pid = ctdb_fork(ctdb);
if (pid == -1) {