add debug logging to extractAt for parse failures
enables diagnostic output when json parsing fails, particularly useful
for debugging enum mismatches from external APIs. users can enable via:
pub const std_options = .{
.log_scope_levels = &.{.{ .scope = .zat, .level = .debug }},
};
logs include: field name, path, expected type, actual json type, and error.
zero overhead when disabled - compiles away entirely.
closes #1
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>