add a debug message for showing exit of instances
authorFelix Fietkau <nbd@openwrt.org>
Sun, 24 Jun 2012 21:42:44 +0000 (23:42 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 24 Jun 2012 21:42:44 +0000 (23:42 +0200)
instance.c

index f530ba5..cc839d7 100644 (file)
@@ -86,6 +86,7 @@ instance_exit(struct uloop_process *p, int ret)
        struct service_instance *in;
 
        in = container_of(p, struct service_instance, proc);
+       DPRINTF("Instance %s::%s exit with error code %d\n", in->srv->name, in->name, ret);
        uloop_timeout_cancel(&in->timeout);
        if (in->restart)
                instance_start(in);