Jacob Coffee

Results 217 comments of Jacob Coffee

It would be welcome and we could help with the transition when needed.

@kedod you might work with @guacs as well. There is a thread in the [development discord channel](https://discord.com/channels/919193495116337154/1183945128637898812). Happy to have anyone help or maybe even just take this if they...

This is done externally in https://github.com/getsentry/sentry-python/pull/3358

We do have this in the CLI documentation. I believe you were referring to adding it in the https://docs.litestar.dev/latest/usage/debugging.html section specifically.

In testing https://github.com/litestar-org/litestar/blob/d94717eef5b8a1bdf399e9af2239a586656cda67/litestar/app.py#L449-L455 ```py @debug.setter def debug(self, value: bool) -> None: import logging print("Inside the debug setter") if self.logger: print("Inside the debug setter and logger is not None") self.logger.setLevel(logging.DEBUG if...

```py @get("/") def hello_world(request: Request) -> dict[str, str]: """Keeping the tradition alive with hello world.""" print(f"Root logger level at start of request: {logging.getLogger().level}") print("inside hello world") if request.logger is not...

The original issue was fixed but the expected behavior of this I haven't been able to solve

Yes I believe so, could you try the resolution from https://github.com/litestar-org/litestar/pull/2014/files#diff-110e498a2e71333ae98121de712e741ce2410c899c7929ac88be1a12f3978c59?

Note whoever takes this that `cloudevents` Python SDK by itself doesn't depend on Pydantic but it offers a `[pydantic]` extra. https://github.com/cloudevents/sdk-python