summaryrefslogtreecommitdiff
path: root/docs/oauth1/server.rst
diff options
context:
space:
mode:
Diffstat (limited to 'docs/oauth1/server.rst')
-rw-r--r--docs/oauth1/server.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/oauth1/server.rst b/docs/oauth1/server.rst
index db469d2..2f30c65 100644
--- a/docs/oauth1/server.rst
+++ b/docs/oauth1/server.rst
@@ -441,7 +441,9 @@ Drop a line in our `Gitter OAuthLib community`_ or open a `GitHub issue`_ =)
If you run into issues it can be helpful to enable debug logging::
import logging
+ import oauthlib
import sys
+ oauthlib.set_debug(True)
log = logging.getLogger('oauthlib')
log.addHandler(logging.StreamHandler(sys.stdout))
log.setLevel(logging.DEBUG)