print hls

This commit is contained in:
Roy Olav Purser 2021-05-26 18:11:23 +02:00
parent 0fb2f38348
commit 81a28d0656
Signed by: roypur
GPG Key ID: E14D26A036F21656
2 changed files with 1 additions and 1 deletions

View File

@ -288,6 +288,7 @@ async def rewrite(current, proxy):
async with proxy.session() as session: async with proxy.session() as session:
resp = await session.get(current) resp = await session.get(current)
text = await resp.text() text = await resp.text()
logger.info(text)
except Exception as e: except Exception as e:
logger.info(e) logger.info(e)
if text is not None: if text is not None:

View File

@ -93,5 +93,4 @@ async def get_any(upstream, proxy, logger):
for task in tasks: for task in tasks:
if not task.done(): if not task.done():
task.cancel() task.cancel()
logger.info(result)
return result return result