summaryrefslogtreecommitdiffstats
path: root/service.c
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2012-06-24 23:50:18 +0200
committerFelix Fietkau <nbd@openwrt.org>2012-06-24 23:50:18 +0200
commit6a96369265e7aab19a74c5264fa54b781026e834 (patch)
tree77827ace9a58f3762a57a8ab9a1a0af8729a41ac /service.c
parent5c40cd4ad2774f743b653257f5ca4dff857becdf (diff)
downloadunitd-6a96369265e7aab19a74c5264fa54b781026e834.tar
unitd-6a96369265e7aab19a74c5264fa54b781026e834.zip
add debug
Diffstat (limited to 'service.c')
-rw-r--r--service.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/service.c b/service.c
index aeef7a7..66ea204 100644
--- a/service.c
+++ b/service.c
@@ -36,12 +36,15 @@ service_instance_update(struct vlist_tree *tree, struct vlist_node *node_new,
in_n = container_of(node_new, struct service_instance, node);
if (in_o && in_n) {
+ DPRINTF("Update instance %s::%s\n", in_o->srv->name, in_o->name);
instance_update(in_o, in_n);
instance_free(in_n);
} else if (in_o) {
+ DPRINTF("Free instance %s::%s\n", in_o->srv->name, in_o->name);
instance_stop(in_o, false);
instance_free(in_o);
} else if (in_n) {
+ DPRINTF("Create instance %s::%s\n", in_o->srv->name, in_o->name);
instance_start(in_n);
}
}
@@ -128,9 +131,12 @@ service_handle_set(struct ubus_context *ctx, struct ubus_object *obj,
name = blobmsg_data(cur);
s = avl_find_element(&services, name, s, avl);
- if (s)
+ if (s) {
+ DPRINTF("Update service %s\n", name);
return service_update(s, msg, tb);
+ }
+ DPRINTF("Create service %s\n", name);
s = service_alloc(name);
if (!s)
return UBUS_STATUS_UNKNOWN_ERROR;