From f04ac78624e256c8d9d351b5160c778a1f1b9dea Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Thu, 29 Jan 2026 13:14:11 -0600 Subject: [PATCH] core: use 0.15 native tag name conversion --- src/App.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.zig b/src/App.zig index d3e37e86d..cd8b67164 100644 --- a/src/App.zig +++ b/src/App.zig @@ -240,7 +240,7 @@ fn drainMailbox(self: *App, rt_app: *apprt.App) !void { switch (message) { // these tend to be way too verbose for normal debugging .redraw_surface, .redraw_inspector => {}, - else => log.debug("mailbox message={s}", .{@tagName(message)}), + else => log.debug("mailbox message={t}", .{message}), } switch (message) { .open_config => try self.performAction(rt_app, .open_config),