You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't pass a slice of already-redacted arguments to `redact.Errorf` so
that they're preserved in the regular error message.
Tested by forcing an error and seeing the full message:
```
$ go run ./cmd/devbox shell
Ensuring packages are installed.
✓ Computed the Devbox environment.
Error: nix print-dev-env --json "path:/Users/gcurtis/src/devbox/.devbox/gen/flake": exit status 1
Error: There was an internal error. Run with DEVBOX_DEBUG=1 for a detailed error message, and consider reporting it at https://github.com/jetpack-io/devbox/issues
```
Gets redacted in Sentry as:
```
nix print-dev-env --json "path:<redacted string>": <redacted *exec.ExitError>
```
0 commit comments