Add a logger to ytapi.
This commit is contained in:
parent
4706a0a6a7
commit
420a14bb88
1 changed files with 8 additions and 0 deletions
|
@ -1,9 +1,17 @@
|
|||
import apiclient.discovery
|
||||
import datetime
|
||||
import logging
|
||||
import isodate
|
||||
|
||||
from . import helpers
|
||||
|
||||
logging.basicConfig(level=logging.DEBUG)
|
||||
log = logging.getLogger(__name__)
|
||||
logging.getLogger('googleapiclient.discovery').setLevel(logging.WARNING)
|
||||
logging.getLogger('requests.packages.urllib3.connectionpool').setLevel(logging.WARNING)
|
||||
logging.getLogger('requests.packages.urllib3.util.retry').setLevel(logging.WARNING)
|
||||
|
||||
|
||||
class VideoNotFound(Exception):
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue