We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
def non_user_code_prefix
Add
def non_user_code_prefix(path: str | Path) -> None: if isinstance(path, Path): path = str(path) logfire._internal.stack_info.NON_USER_CODE_PREFIXES += (path,)
Equivilant to
logfire._internal.stack_info.NON_USER_CODE_PREFIXES += (str(Path(__file__).parent.absolute()),)
The text was updated successfully, but these errors were encountered:
See pydantic/pydantic-ai#570, adding this to the public API, would also make it available via logfire_api.
logfire_api
Sorry, something went wrong.
alexmojaki
No branches or pull requests
Description
Add
Equivilant to
The text was updated successfully, but these errors were encountered: