From 15031d7a4920d81fc790cf60e86fceaedae7e999 Mon Sep 17 00:00:00 2001 From: Olof Hagsand Date: Fri, 12 Oct 2018 08:05:48 +0000 Subject: [PATCH] stream debug --- lib/src/clixon_stream.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/src/clixon_stream.c b/lib/src/clixon_stream.c index 31859ca3..32d9317d 100644 --- a/lib/src/clixon_stream.c +++ b/lib/src/clixon_stream.c @@ -203,6 +203,7 @@ stream_cb_add(clicon_handle h, event_stream_t *es; struct stream_subscription *ss; + clicon_debug(1, "%s", __FUNCTION__); if ((es = stream_find(h, stream)) == NULL){ clicon_err(OE_CFG, ENOENT, "Stream %s not found", stream); goto done; @@ -289,6 +290,7 @@ stream_notify_xml(clicon_handle h, event_stream_t *es; struct stream_subscription *ss; + clicon_debug(1, "%s", __FUNCTION__); if ((es = stream_find(h, stream)) == NULL) goto ok; /* Go thru all global (handle) subscriptions and find matches */ @@ -332,6 +334,7 @@ stream_notify(clicon_handle h, char timestr[27]; struct timeval tv; + clicon_debug(1, "%s", __FUNCTION__); va_start(args, event); len = vsnprintf(NULL, 0, event, args) + 1; va_end(args);