From 5d088cbac7130e9ec8655218acb15dd22b20a7f8 Mon Sep 17 00:00:00 2001
From: José Bollo <jose.bollo@iot.bzh>
Date: Thu, 7 Apr 2016 18:14:49 +0200
Subject: minor
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Change-Id: I25e8fd32146af4c1986d25dd9dbf4085c06400b7
Signed-off-by: José Bollo <jose.bollo@iot.bzh>
---
 plugins/samples/HelloWorld.c | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

(limited to 'plugins/samples')

diff --git a/plugins/samples/HelloWorld.c b/plugins/samples/HelloWorld.c
index e29c22fa..7d99f6df 100644
--- a/plugins/samples/HelloWorld.c
+++ b/plugins/samples/HelloWorld.c
@@ -37,7 +37,7 @@ static int fillargs(json_object *args, struct afb_arg arg)
 }
 
 // Sample Generic Ping Debug API
-static void ping(struct afb_req request, json_object *jresp)
+static void ping(struct afb_req request, json_object *jresp, const char *tag)
 {
     static int pingcount = 0;
     json_object *query;
@@ -45,12 +45,12 @@ static void ping(struct afb_req request, json_object *jresp)
     query = json_object_new_object();
     afb_req_iterate(request, (void*)fillargs, query);
 
-    afb_req_success_f(request, jresp, "Ping Binder Daemon count=%d query=%s", ++pingcount, json_object_to_json_string(query));
+    afb_req_success_f(request, jresp, "Ping Binder Daemon tag=%s count=%d query=%s", tag, ++pingcount, json_object_to_json_string(query));
 }
 
 static void pingSample (struct afb_req request)
 {
-	ping(request, json_object_new_string ("Some String"));
+	ping(request, json_object_new_string ("Some String"), "pingSample");
 }
 
 static void pingFail (struct afb_req request)
@@ -60,12 +60,12 @@ static void pingFail (struct afb_req request)
 
 static void pingNull (struct afb_req request)
 {
-	ping(request, NULL);
+	ping(request, NULL, "pingNull");
 }
 
 static void pingBug (struct afb_req request)
 {
-	pingNull((struct afb_req){NULL,NULL,NULL});
+	ping((struct afb_req){NULL,NULL,NULL}, NULL, "pingBug");
 }
 
 
@@ -83,7 +83,7 @@ static void pingJson (struct afb_req request) {
     
     json_object_object_add(jresp,"eobj", embed);
 
-    ping(request, jresp);
+    ping(request, jresp, "pingJson");
 }
 
 // NOTE: this sample does not use session to keep test a basic as possible
-- 
cgit