fix(cmd): lowercase credentials server logs - #1071
Merged
Merged
Conversation
## cmd/ subdirectory reviewed
`cmd/internal` — specifically `cmd/internal/agentcontainer/credentials_server.go`.
## Issue found
The repository convention (documented in AGENTS.md) is that **log messages must be lowercase**. This file in the dev container credentials server contained five non-lowercase log strings:
- `log.Errorf("Failed to decode git SSH signing key, ...")`
- `log.Errorf("Failed to configure git SSH signature helper, ...")`
- `log.Debugf("Could not read result for port attributes: %v", err)`
- `log.Debugf("Could not parse result for port attributes: %v", err)`
- `log.Debugf("Forwarding port %s (%s, protocol=%s)", ...)`
These are consistent lowercase-log violations. The rest of the `cmd/` tree (e.g. `cmd/snapshot`, `cmd/secrets`, `cmd/root.go`) already follows the lowercase convention (`"restoring snapshot..."`, `"secret %q deleted..."`, `"panic: ..."`), so these five were the outliers.
## Minimal change
Lowercased the five log message strings in `cmd/internal/agentcontainer/credentials_server.go`. No behavior change, no logic touched — only the leading capitalization of each log string.
## Verification performed
- `task cli:format` — clean (gofmt/gci/gofumpt via golangci-lint fmt).
- `task cli:lint:ci` — **0 issues** (run against the `--new-from-patch` diff vs `origin/main`).
- `task cli:test` — passes for the touched package (`go test ./cmd/internal/agentcontainer/...` → `ok`). The only failures are the **known pre-existing** `pkg/git` `TestRepoClone*` tests, which fail on `origin/main` already (stale assertion) and are unrelated to this change (the change does not touch `pkg/git`).
- Confirmed no tests assert on these log strings.
This PR was created by an AI agent as part of an automated daily CLI review job.
✅ Deploy Preview for devsydev canceled.
|
✅ Deploy Preview for images-devsy-sh canceled.
|
Up to standards ✅🟢 Issues
|
| Metric | Results |
|---|---|
| Complexity | 0 |
| Duplication | 0 |
AI Reviewer: run a review on demand. To trigger the first review automatically, go to your organization or repository integration settings. AI can make mistakes. Always validate suggestions.
TIP This summary will be updated as you push new changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
cmd/ subdirectory reviewed
cmd/internal— specificallycmd/internal/agentcontainer/credentials_server.go.Issue found
The repository convention (documented in AGENTS.md) is that log messages must be lowercase. This file in the dev container credentials server contained five non-lowercase log strings:
log.Errorf("Failed to decode git SSH signing key, ...")log.Errorf("Failed to configure git SSH signature helper, ...")log.Debugf("Could not read result for port attributes: %v", err)log.Debugf("Could not parse result for port attributes: %v", err)log.Debugf("Forwarding port %s (%s, protocol=%s)", ...)These are consistent lowercase-log violations. The rest of the
cmd/tree (e.g.cmd/snapshot,cmd/secrets,cmd/root.go) already follows the lowercase convention ("restoring snapshot...","secret %q deleted...","panic: ..."), so these five were the outliers.Minimal change
Lowercased the five log message strings in
cmd/internal/agentcontainer/credentials_server.go. No behavior change, no logic touched — only the leading capitalization of each log string.Verification performed
task cli:format— clean (gofmt/gci/gofumpt via golangci-lint fmt).task cli:lint:ci— 0 issues (run against the--new-from-patchdiff vsorigin/main).task cli:test— passes for the touched package (go test ./cmd/internal/agentcontainer/...→ok). The only failures are the known pre-existingpkg/gitTestRepoClone*tests, which fail onorigin/mainalready (stale assertion) and are unrelated to this change (the change does not touchpkg/git).This PR was created by an AI agent as part of an automated daily CLI review job.