From 448d130c7c772cd09a0de7a197a7866954716fe1 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Sun, 26 Jan 2025 16:32:13 +0100 Subject: [PATCH] feat: add debug trace channel --- src/thespian.zig | 1 + 1 file changed, 1 insertion(+) diff --git a/src/thespian.zig b/src/thespian.zig index 116fae5..29e77a5 100644 --- a/src/thespian.zig +++ b/src/thespian.zig @@ -336,6 +336,7 @@ pub const channel = struct { pub const event: c.thespian_trace_channel = 2048; pub const widget: c.thespian_trace_channel = 4096; pub const input: c.thespian_trace_channel = 8192; + pub const debug: c.thespian_trace_channel = 16384; pub const all = c.thespian_trace_channel_all; };