From c3db609a90868fe6a98b810bb1684acb8a214d08 Mon Sep 17 00:00:00 2001 From: Pragyansh Chaturvedi Date: Fri, 3 Oct 2025 17:35:57 +0530 Subject: [PATCH] Revert to using Warning loglevel as default --- pythonbpf/codegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonbpf/codegen.py b/pythonbpf/codegen.py index c50d316..5de23a5 100644 --- a/pythonbpf/codegen.py +++ b/pythonbpf/codegen.py @@ -121,7 +121,7 @@ def compile_to_ir(filename: str, output: str, loglevel=logging.WARNING): return output -def compile(loglevel=logging.INFO) -> bool: +def compile(loglevel=logging.WARNING) -> bool: # Look one level up the stack to the caller of this function caller_frame = inspect.stack()[1] caller_file = Path(caller_frame.filename).resolve()