You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've come to realize, I have a distinct lack of debugging information support in the SDK. However, I want to find happy levels of debugging; I don't want to end up utterly spamming the prompt window, yet I don't want to leave something vital out.
What came to mind, so far:
class FamilySearch(...):
def init(..., debug=None)
def _request(...)
...
if debug is not None:
print(method, url)
...
def _fs2py(...debug=None)
if debug is not None:
print(headers["status"], headers["message")
Something like that, anyway...
The text was updated successfully, but these errors were encountered:
I've come to realize, I have a distinct lack of debugging information support in the SDK. However, I want to find happy levels of debugging; I don't want to end up utterly spamming the prompt window, yet I don't want to leave something vital out.
What came to mind, so far:
Something like that, anyway...
The text was updated successfully, but these errors were encountered: