log to file pls

feature-unify_handlers
Tomáš Mládek 2018-01-31 14:56:29 +01:00 committed by Tomáš Mládek
parent 47eebac4d8
commit 5cef333c4a
1 changed files with 5 additions and 4 deletions

View File

@ -12,14 +12,15 @@ import youtube_dl
from telegram import MessageEntity
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
logging.basicConfig(level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger("kunsax")
DIR = os.path.dirname(os.path.realpath(__file__))
TMP_DIR = '/tmp'
OUT_DIR = DIR + '/out'
logging.basicConfig(filename=OUT_DIR + '/delojza.log',
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s')
logger = logging.getLogger("kunsax")
def ytdl_has(url):
ies = youtube_dl.extractor.gen_extractors()