diff options
Diffstat (limited to 'examples/deleted.py')
| -rw-r--r-- | examples/deleted.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/deleted.py b/examples/deleted.py index 3b6b9897..3bd38ec3 100644 --- a/examples/deleted.py +++ b/examples/deleted.py @@ -1,4 +1,8 @@ import discord +import logging + +# Set up the logging module to output diagnostic to the console. +logging.basicConfig() client = discord.Client() client.login('email', 'password') |