-
Notifications
You must be signed in to change notification settings - Fork 77
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
Log more info about internal errors #346
Conversation
Deploying logfire-docs with Cloudflare Pages
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #346 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 121 123 +2
Lines 8958 9040 +82
Branches 1171 1178 +7
=========================================
+ Hits 8958 9040 +82 ☔ View full report in Codecov by Sentry. |
@@ -1,5 +1,6 @@ | |||
from _typeshed import Incomplete | |||
from collections.abc import Generator | |||
from logfire._internal.stack_info import is_user_code as is_user_code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why is the as
needed?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's just what stubgen does, you can see it in lots of other places in the pyi files
Replaces #325