Browse Source

Set up logging module in examples

Without setting up the logging module, a god number of error conditions
and warnings will never be output by the library.  This is a common
pitfall to forget and it's not documented good enough the consequences
of not setting up the logging module when developing applications with
this library.
pull/9/head
Hornwitser 10 years ago
parent
commit
ea2f35fb24
  1. 4
      examples/deleted.py
  2. 4
      examples/echo.py
  3. 4
      examples/edits.py
  4. 4
      examples/reply.py

4
examples/deleted.py

@ -1,4 +1,8 @@
import discord import discord
import logging
# Set up the logging module to output diagnostic to the console.
logging.basicConfig()
client = discord.Client() client = discord.Client()
client.login('email', 'password') client.login('email', 'password')

4
examples/echo.py

@ -1,4 +1,8 @@
import discord import discord
import logging
# Set up the logging module to output diagnostic to the console.
logging.basicConfig()
client = discord.Client() client = discord.Client()
client.login('email', 'password') client.login('email', 'password')

4
examples/edits.py

@ -1,5 +1,9 @@
import discord import discord
import time import time
import logging
# Set up the logging module to output diagnostic to the console.
logging.basicConfig()
client = discord.Client() client = discord.Client()
client.login('email', 'password') client.login('email', 'password')

4
examples/reply.py

@ -1,4 +1,8 @@
import discord import discord
import logging
# Set up the logging module to output diagnostic to the console.
logging.basicConfig()
client = discord.Client() client = discord.Client()
client.login('email', 'password') client.login('email', 'password')

Loading…
Cancel
Save