From b8ef7cc945c1dcf29200dd8f62c9878c2743256e Mon Sep 17 00:00:00 2001 From: varun-r-mallya Date: Sat, 30 Aug 2025 18:54:46 +0530 Subject: [PATCH] Remove trace_printk decorator function --- pythonbpf/decorators.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/pythonbpf/decorators.py b/pythonbpf/decorators.py index 28bacfd..5c69cb4 100644 --- a/pythonbpf/decorators.py +++ b/pythonbpf/decorators.py @@ -6,7 +6,3 @@ def tracepoint(name: str): def license(license_type: str): return license_type - -def trace_printk(msg: str): - # placeholder — real version lowers to IR later - print(f"[trace_printk] {msg}")