pyrollbar uses reprlib to get representations of objects gathered as local variables. This means that to customize it, the only current option is to define/override __repr__. That isn't a good option in some cases, including:
- objects coming from external libraries
- objects where something else depends on the existing
__repr__ implementation
Creating this issue to discuss the design for how to make this customizable.
pyrollbar uses reprlib to get representations of objects gathered as local variables. This means that to customize it, the only current option is to define/override
__repr__. That isn't a good option in some cases, including:__repr__implementationCreating this issue to discuss the design for how to make this customizable.