X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fprocd.git;a=blobdiff_plain;f=plug%2Fhotplug.c;h=07abaf8ac8b651d960b23587d42a6b9b48f3d16c;hp=ca1e823b65c5fdeac1c5d30f2633669abb2e5a56;hb=695c2196d7fcdf8ac7b63e755e108755ce85ce3b;hpb=916f95cb58604038695347ee41a430d8ca1f0556 diff --git a/plug/hotplug.c b/plug/hotplug.c index ca1e823..07abaf8 100644 --- a/plug/hotplug.c +++ b/plug/hotplug.c @@ -399,6 +399,18 @@ static struct json_script_ctx jctx = { .handle_file = rule_handle_file, }; +static void hotplug_handler_debug(struct blob_attr *data) +{ + char *str; + + if (debug < 3) + return; + + str = blobmsg_format_json(data, true); + DEBUG(3, "%s\n", str); + free(str); +} + static void hotplug_handler(struct uloop_fd *u, unsigned int ev) { int i = 0; @@ -421,7 +433,7 @@ static void hotplug_handler(struct uloop_fd *u, unsigned int ev) i += l; } blobmsg_close_table(&b, index); - DEBUG(3, "%s\n", blobmsg_format_json(b.head, true)); + hotplug_handler_debug(b.head); json_script_run(&jctx, rule_file, blob_data(b.head)); }