mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-20 03:56:35 +00:00
11 lines
265 B
Python
11 lines
265 B
Python
import logging
|
|
|
|
|
|
log = logging.getLogger('tubesync')
|
|
log.setLevel(logging.DEBUG)
|
|
ch = logging.StreamHandler()
|
|
ch.setLevel(logging.DEBUG)
|
|
formatter = logging.Formatter('%(asctime)s [%(name)s/%(levelname)s] %(message)s')
|
|
ch.setFormatter(formatter)
|
|
log.addHandler(ch)
|