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
Chamber writes log messages to stdout, which means they get intermingled with output that you might want to parse programmatically.
E.g.
[root@967ceb326552 dir-name]# chamber export -f json chamber-of-secrets
2023/06/03 09:39:34 WARN: failed to get session token, falling back to IMDSv1: 404 Not Found: Not Found
status code: 404, request id:
caused by: EC2MetadataError: failed to make EC2Metadata request
404 page not found
status code: 404, request id:
{"super_secret_password":"password"}
My workaround for now is to look for the first line that can be parsed as JSON. But... that's not ideal. :)
My hope is that I could either send all logs to stderr, disable them entirely, or set the minimum log level that will be printed.
The text was updated successfully, but these errors were encountered:
Hey @jeffparsons - If you are still interested in contributing, I checked with our corporate overlords, and there is no problem at all with us accepting outside contributions. 🎉 Just be aware that your contributions will be licensed under the same MIT License that chamber already uses.
Chamber writes log messages to stdout, which means they get intermingled with output that you might want to parse programmatically.
E.g.
My workaround for now is to look for the first line that can be parsed as JSON. But... that's not ideal. :)
My hope is that I could either send all logs to stderr, disable them entirely, or set the minimum log level that will be printed.
The text was updated successfully, but these errors were encountered: