**Is your feature request related to a problem? Please describe.** It would be nice to easily modify the logger of imported libraries to use JSON logging from Powertools as well. **Describe the solution you'd like** Something like discussed in this discussion: https://github.com/awslabs/aws-lambda-powertools-python/discussions/799 Maybe something like this? ```python logger = Logger(...., level="INFO", deny_list=["dont-log-this-library", "and-not-this"]) ``` **Describe alternatives you've considered** See the linked discussion. Thank you!