-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Provide more-meaningful __repr__ or __str__ for conditions #1202
Comments
Seems reasonable to me. Marking as a feature request. |
How does this go 4 years without a fix? |
5 years |
Thank you all for checking in and sorry for the delay on this. We created a backlog item to look into this feature request and if anyone wants to share additional use cases or feedback then please feel free to leave a comment. Although we can't give a definite timeline, I'll make sure to keep it posted as soon as I hear anything else and please feel free to check back here in the future. |
The boto3 team has recently announced that the Resource interface has entered a feature freeze and won’t be accepting new changes at this time: https://boto3.amazonaws.com/v1/documentation/api/latest/guide/resources.html. We’ll be closing existing feature requests, such as this issue, to avoid any confusion on current implementation status. We do appreciate your feedback and will ensure it’s considered in future feature decisions. We’d like to highlight that all existing code using resources is supported and will continue to work in Boto3. No action is needed from users of the library. |
I spend a lot of time looking at my service's logs, and seeing messages like this:
It'd be really nice to see something meaningful in that log message, like
Key("foo").eq("bar")
-- i.e., the name of the key, and the value, instead of<boto3.dynamodb.conditions.Equals object at 0x7ffe0a29fa20>
, which tells me almost nothing. I haven't found a way to do this from "outside" of boto, so perhaps you could add this as a feature.The text was updated successfully, but these errors were encountered: