PyGithub Programming Model: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
 
Line 3: Line 3:
=Turn on Debugging=
=Turn on Debugging=
<syntaxhighlight lang='py'>
<syntaxhighlight lang='py'>
github.enable_console_debug_logging()
from github import enable_console_debug_logging
 
enable_console_debug_logging()
</syntaxhighlight>
</syntaxhighlight>

Latest revision as of 01:50, 16 May 2023

Internal

Turn on Debugging

from github import enable_console_debug_logging

enable_console_debug_logging()