Skip to content

Commit

Permalink
Replace use of field with erff.
Browse files Browse the repository at this point in the history
  • Loading branch information
InKryption committed Jun 7, 2024
1 parent f576f5e commit 44ec419
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmd/cmd.zig
Original file line number Diff line number Diff line change
Expand Up @@ -665,7 +665,7 @@ fn getEntrypoints(logger: Logger) !std.ArrayList(SocketAddr) {
defer addr_list.deinit();

if (addr_list.addrs.len == 0) {
logger.field("entrypoint", entrypoint).err("entrypoint resolve dns failed (no records found)");
logger.errf("'{s}': entrypoint resolve dns failed (no records found)", .{entrypoint});
return error.EntrypointDnsResolutionFailure;
}

Expand Down

0 comments on commit 44ec419

Please sign in to comment.