summaryrefslogtreecommitdiff
path: root/web.py
diff options
context:
space:
mode:
authorKeuin <[email protected]>2023-06-03 15:58:47 +0800
committerKeuin <[email protected]>2023-06-03 15:58:47 +0800
commitd22440444c055dc5b921d453d82df5e38700aa1e (patch)
tree80902a9f80da563e9a7791200028e4c7d604798f /web.py
parentd845692816079cf78ded919bc1175647576d8529 (diff)
Remove useless logs
Diffstat (limited to 'web.py')
-rw-r--r--web.py2
1 files changed, 0 insertions, 2 deletions
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: