From 78b0229e6aa3089c13e1e978acd76c15f3af2996 Mon Sep 17 00:00:00 2001
From: obarun <eric@obarun.org>
Date: Sat, 28 Jan 2023 10:38:59 +1100
Subject: [PATCH] be able to follow it

---
 src/lib66/service/service_resolve_array_search.c | 4 +++-
 src/lib66/tree/tree_resolve_array_search.c       | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/lib66/service/service_resolve_array_search.c b/src/lib66/service/service_resolve_array_search.c
index 12fd1092..e8600c32 100644
--- a/src/lib66/service/service_resolve_array_search.c
+++ b/src/lib66/service/service_resolve_array_search.c
@@ -13,11 +13,13 @@
  */
 
 #include <string.h>
-
+#include <oblibs/log.h>
 #include <66/service.h>
 
 int service_resolve_array_search(resolve_service_t *ares, unsigned int areslen, char const *name)
 {
+    log_flow() ;
+
     unsigned int pos = 0 ;
 
     for (; pos < areslen ; pos++) {
diff --git a/src/lib66/tree/tree_resolve_array_search.c b/src/lib66/tree/tree_resolve_array_search.c
index c94b5760..1230fa82 100644
--- a/src/lib66/tree/tree_resolve_array_search.c
+++ b/src/lib66/tree/tree_resolve_array_search.c
@@ -13,11 +13,13 @@
  */
 
 #include <string.h>
-
+#include <oblibs/log.h>
 #include <66/tree.h>
 
 int tree_resolve_array_search(resolve_tree_t *ares, unsigned int areslen, char const *name)
 {
+    log_flow() ;
+
     unsigned int pos = 0 ;
 
     for (; pos < areslen ; pos++) {
-- 
GitLab