pub fn logSource(source: []const u8) void
pub fn logSource(source: []const u8) void { @disableInstrumentation(); var buf: [256]u8 = undefined; const ls = std.debug.lockStderr(&buf); defer std.debug.unlockStderr(); logSourceInner(source, ls.terminal()) catch {}; }