harshilv17 opened a new pull request, #6842: URL: https://github.com/apache/camel-k/pull/6842
Fixes #6840 `Logger.Info` takes key-value pairs, not a format string — `Infof` is the Printf variant. The digest-changed log in `build_kit.go` passed `"...%s...", integration.Name` to `Info`, so zap saw a key with no value and raised `dpanic`, and the `%s` never interpolated. Dropped the argument rather than switching to `Infof`: the action's logger is built by `rlog.ForIntegration(target)`, so `ns` and `name` are already on every record. Checked the rest of the repo with an AST pass over all `Info`/`Debug`/`Error` call sites — this was the only parity violation. Existing tests already cover this branch. _Claude Code on behalf of Harshil Valecha_ 🤖 Generated with [Claude Code](https://claude.com/claude-code) -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
