We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parentsa3b4824 +b4e9ab7 commit8f74a33Copy full SHA for 8f74a33
docs/api-usage.rst
@@ -50,6 +50,12 @@ To connect to GitLab.com or another GitLab instance, create a ``gitlab.Gitlab``
50
# to validate your token authentication. Note that this will not work with job tokens.
51
gl.auth()
52
53
+# Enable "debug" mode. This can be useful when trying to determine what
54
+# information is being sent back and forth to the GitLab server.
55
+# Note: this will cause credentials and other potentially sensitive
56
+# information to be printed to the terminal.
57
+ gl.enable_debug()
58
+
59
You can also use configuration files to create ``gitlab.Gitlab`` objects:
60
61
..code-block::python