Try to use an existing logger instead.

This commit is contained in:
A. Svensson 2015-02-18 20:44:18 +01:00
parent a1b573cecd
commit cfa2f0181c

View File

@ -15,10 +15,7 @@ URL = 'http://www.byond.com/games/exadv1/spacestation13'
PLAYER_COUNT = re.compile('Logged in: (\d+) player') PLAYER_COUNT = re.compile('Logged in: (\d+) player')
logging.basicConfig( logger = logging.getLogger(__name__)
format = '%(asctime)s %(levelname)s %(message)s',
level = logging.INFO,
)
class ServerParser(object): class ServerParser(object):