turn instance exit message into a debug message
authorFelix Fietkau <nbd@openwrt.org>
Fri, 31 May 2013 15:11:54 +0000 (17:11 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Fri, 31 May 2013 15:12:02 +0000 (17:12 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
instance.c

index b2cdfa1..1c2d8ba 100644 (file)
@@ -126,7 +126,7 @@ instance_exit(struct uloop_process *p, int ret)
        struct service_instance *in;
 
        in = container_of(p, struct service_instance, proc);
-       LOG("Instance %s::%s exit with error code %d\n", in->srv->name, in->name, ret);
+       DEBUG(1, "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);