From d22440444c055dc5b921d453d82df5e38700aa1e Mon Sep 17 00:00:00 2001 From: Keuin Date: Sat, 3 Jun 2023 15:58:47 +0800 Subject: Remove useless logs --- texgen.py | 3 --- web.py | 2 -- 2 files changed, 5 deletions(-) diff --git a/texgen.py b/texgen.py index eda0e0b..3a2964d 100644 --- a/texgen.py +++ b/texgen.py @@ -59,9 +59,6 @@ class TexGenerator: await asyncio.wait_for(proc.wait(), timeout=10) except TimeoutError: raise TexGenerationError('xelatex timed out') - stdout, stderr = [(await x.read()).decode() for x in (proc.stdout, proc.stderr)] - print('STDOUT', stdout) - print('STDERR', stderr) if proc.returncode != 0: raise TexGenerationError(f'xelatex process exited with non-zero code {proc.returncode}') os.rename(os.path.join(workdir, f'{job_name}.pdf'), cache_file_path) diff --git a/web.py b/web.py index 82126b7..0d2a39f 100644 --- a/web.py +++ b/web.py @@ -20,9 +20,7 @@ html_cache = htmlcache.HtmlCache('html_cache') @app.get("/utaten/{item_id}.pdf") async def get_utaten_lyric_pdf(item_id: str): try: - print('_get_utaten_tex_source') tex = await html_cache.get_utaten_tex_source(item_id) - print('xelatex') pdf_path = await tex_generator.xelatex(tex) return FileResponse(pdf_path, media_type='application/pdf') except texgen.TexGenerationError as e: -- cgit v1.2.3