From a414bacfec26f6951deea991652527460022e90b Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Tue, 3 Mar 2026 21:01:42 -0800 Subject: [PATCH] downgrade err -> debug --- src/srf.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/srf.zig b/src/srf.zig index 12c238d..059a292 100644 --- a/src/srf.zig +++ b/src/srf.zig @@ -359,7 +359,7 @@ pub const Record = struct { if (type_field.default_value_ptr) |ptr| { @field(obj, type_field.name) = @as(*const type_field.type, @ptrCast(@alignCast(ptr))).*; } else { - log.err("Record could not be coerced. Field {s} not found on srf data, and no default value exists on the type", .{type_field.name}); + log.debug("Record could not be coerced. Field {s} not found on srf data, and no default value exists on the type", .{type_field.name}); return error.FieldNotFoundOnFieldWithoutDefaultValue; } }