diff options
Diffstat (limited to 'examples/reply.py')
| -rw-r--r-- | examples/reply.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/examples/reply.py b/examples/reply.py index 0697704d..e23db962 100644 --- a/examples/reply.py +++ b/examples/reply.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') |