feat: add debug trace channel

This commit is contained in:
CJ van den Berg 2025-01-26 16:32:13 +01:00
parent fdf7a0c3bb
commit 448d130c7c
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -336,6 +336,7 @@ pub const channel = struct {
pub const event: c.thespian_trace_channel = 2048; pub const event: c.thespian_trace_channel = 2048;
pub const widget: c.thespian_trace_channel = 4096; pub const widget: c.thespian_trace_channel = 4096;
pub const input: c.thespian_trace_channel = 8192; pub const input: c.thespian_trace_channel = 8192;
pub const debug: c.thespian_trace_channel = 16384;
pub const all = c.thespian_trace_channel_all; pub const all = c.thespian_trace_channel_all;
}; };