Skip to content

Commit

Permalink
clear prints
Browse files Browse the repository at this point in the history
  • Loading branch information
molotgor committed Jul 1, 2024
1 parent 0f8ed03 commit f89528e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ def readConf(path: str):
if logDir:
createDir(logDir)
except Exception as e:
print(e)
logger.debug(e)


async def reqStatus(req: Request):
Expand Down Expand Up @@ -391,7 +391,6 @@ async def reqResult(req: Request):
return web.json_response({'status': status})
elif status == 'success':
path = task.get('result','')
print(path)
pathConverted = replacePathLocalToServer(path)
if not path or not os.path.isfile(pathConverted):
return web.HTTPNotFound(reason="Resulting file doesn't exist")
Expand Down

0 comments on commit f89528e

Please sign in to comment.