A websocket implementation for zig
0

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #87 from ItsRevolt/master

fix: replace ambiguous '{}' with '{f}' in log.info for std.net.Address

authored by

Karl Seguin and committed by
GitHub
(Oct 18, 2025, 8:19 AM +0800) 91ca9c50 43ce3ff2

+1 -1
+1 -1
src/server/server.zig
··· 210 210 defer w.deinit(); 211 211 212 212 const thrd = try std.Thread.spawn(.{}, Blocking(H).run, .{ &w, socket, ctx }); 213 - log.info("starting blocking worker to listen on {}", .{address}); 213 + log.info("starting blocking worker to listen on {f}", .{address}); 214 214 215 215 // incase listenInNewThread was used and is waiting for us to start 216 216 self._cond.signal();