From fa8eec17691ce8c9c4469b1ffdb21a6696d76d21 Mon Sep 17 00:00:00 2001 From: Roy Olav Purser Date: Fri, 14 May 2021 18:20:45 +0200 Subject: [PATCH] remove hls print again --- stream.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/stream.py b/stream.py index 173fd20..0d1a115 100755 --- a/stream.py +++ b/stream.py @@ -172,7 +172,6 @@ class UpstreamHandler(): data = [] try: embed_url = f'https://noembed.com/embed?url={self.upstream_safe}' - logger.info(embed_url) async with self.proxy.session() as session: resp = await session.get(embed_url) text = await resp.text() @@ -345,7 +344,6 @@ class MainHandler(tornado.web.RequestHandler): data = None if "mpegurl" in ctype.lower(): data = await rewrite(upstream, handler.proxy) - logger.info(data) if isinstance(data, str): self.set_header("Content-Type", "application/vnd.apple.mpegurl") self.write(data)