an experimental irc client

log: remove log

Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>

-1
-1
src/lua.zig
··· 100 100 101 101 pub fn execFn(lua: *Lua, func: i32) !void { 102 102 const lua_type = lua.rawGetIndex(registry_index, func); // function 103 - std.log.err("ref: {d}", .{func}); 104 103 switch (lua_type) { 105 104 .function => lua.protectedCall(0, 0, 0) catch return error.LuaError, 106 105 else => std.debug.panic("not a function {}", .{lua_type}),