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
While reviewing some of the code written by the team, realized that it might be calling ST APIs too many times.
To investigate it, I tried using debug=True in init.
debug=True
But it prints too much information. Even logs like, skipping this request since it does not match ST.
It would be great to have an api_debug=True flag.
api_debug=True
Something simple like
if api_debug: logger.info("%s %s", method, path.get_as_string_dangerous())
at https://github.com/supertokens/supertokens-python/blob/master/supertokens_python/querier.py#L483
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While reviewing some of the code written by the team, realized that it might be calling ST APIs too many times.
To investigate it, I tried using
debug=True
in init.But it prints too much information. Even logs like, skipping this request since it does not match ST.
It would be great to have an
api_debug=True
flag.Something simple like
at https://github.com/supertokens/supertokens-python/blob/master/supertokens_python/querier.py#L483
The text was updated successfully, but these errors were encountered: