Browse Source

change logging

master
Andreas Demmelbauer 3 years ago
parent
commit
4f3091beb2
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      demotape.py

+ 2
- 2
demotape.py View File

@@ -16,7 +16,7 @@ import yaml
from pathlib import Path
import logging

logging.basicConfig(filename='demotape.log', level=logging.INFO)
logging.basicConfig(filename='/var/log/demotape.log', level=logging.INFO)
logging.info("Starting demotape service at " + str(datetime.utcnow()))

config_path = Path(__file__).parent / './config.yaml'
@@ -96,7 +96,7 @@ def my_ytdl_hook(d):


def download_stream(channel, dest_path):
logging.info('download_stream')
logging.info(timestamp() + ' download_stream')
ytdl_opts = {
'logger': MyLogger(),
'outtmpl': dest_path,


Loading…
Cancel
Save