diff options
author | Felix Fietkau <nbd@openwrt.org> | 2013-05-31 17:11:54 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2013-05-31 17:12:02 +0200 |
commit | ef86e35932ffafb43644169ea33b849f58873256 (patch) | |
tree | 4c7fd51cd6ef3ffd4f33299b43b7c641d2f9db88 | |
parent | 9ffeaae6e088a89f0118de2292a7c406745bbdc6 (diff) | |
download | unitd-ef86e35932ffafb43644169ea33b849f58873256.tar unitd-ef86e35932ffafb43644169ea33b849f58873256.zip |
turn instance exit message into a debug message
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
-rw-r--r-- | instance.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |