Quellcode durchsuchen

change logging

master
Andreas Demmelbauer vor 3 Jahren
Ursprung
Commit
4f3091beb2
1 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  1. +2
    -2
      demotape.py

+ 2
- 2
demotape.py Datei anzeigen

@@ -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,


Laden…
Abbrechen
Speichern