diff --git a/src/lib66/service/service_resolve_array_search.c b/src/lib66/service/service_resolve_array_search.c
index 12fd10926d1ca2dfa16eb21b9cd5e92e9ad43cdd..e8600c32432347a45cad3cf4f20d8af973c6447e 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 c94b57608f22ecaf71a623d67e84c73c5e67f8f6..1230fa82b8656a002c176a5c953b3f029fae9bdf 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++) {