From d023455277b121a2d3b02ff7b8da900a1f9314fe Mon Sep 17 00:00:00 2001 From: Jeremie Leska Date: Thu, 29 Jan 2026 11:06:27 +0100 Subject: [PATCH] context: remove debug print This log was introduced for debug. Remove it. Fixes: 0a4b09f461a3 ("cffi: allows to usage of libyang v4") Signed-off-by: Jeremie Leska --- libyang/context.py | 1 - 1 file changed, 1 deletion(-) diff --git a/libyang/context.py b/libyang/context.py index 21db162..d0309d7 100644 --- a/libyang/context.py +++ b/libyang/context.py @@ -262,7 +262,6 @@ def __init__( fmt = lib.LYD_JSON else: fmt = lib.LYD_XML - print("steweg", search_path, yanglib_path, yanglib_fmt, options) ret = lib.ly_ctx_new_ylpath( str2c(search_path), str2c(yanglib_path), fmt, options, ctx )