aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfulup <fulup.arfoll@iot.bzh>2018-06-10 20:32:23 +0200
committerfulup <fulup.arfoll@iot.bzh>2018-06-10 20:32:23 +0200
commitac6f6a5bd003aa16bfbfa5f22203641beae08a32 (patch)
treeccc1eefeeaff421a9f880ad1b8fdff03732d3199
parent515ed1a044cb0f9c44a88bf1900f0356ab080e42 (diff)
Documentation/cleanup
-rw-r--r--plugins/alsa/alsa-api-mixer.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/alsa/alsa-api-mixer.c b/plugins/alsa/alsa-api-mixer.c
index 23fdfb5..c415796 100644
--- a/plugins/alsa/alsa-api-mixer.c
+++ b/plugins/alsa/alsa-api-mixer.c
@@ -600,6 +600,7 @@ STATIC void MixerAttachVerb(AFB_ReqT request) {
json_object_object_add(responseJ, "streams", resultJ);
}
+ AFB_ApiNotice(mixer->api, "responseJ=%s\n", json_object_get_string(responseJ));
AFB_ReqSuccess(request, responseJ, NULL);
return;
@@ -611,7 +612,7 @@ OnErrorExit:
STATIC void MixerPingVerb(AFB_ReqT request) {
static int count = 0;
count++;
- AFB_ReqNotice(request, "Controller:ping count=%d", count);
+ AFB_ReqInfo(request, "MixerAttachVerb: Controller:ping count=%d\n", count);
AFB_ReqSuccess(request, json_object_new_int(count), NULL);
return;