added a try except block for logging errors per miner in the testbench

This commit is contained in:
UpstreamData
2022-04-19 10:15:12 -06:00
parent c7b7a6e7c5
commit 0739a7f689
2 changed files with 25 additions and 18 deletions

View File

@@ -1,5 +1,6 @@
from tools.web_testbench.app import app
import uvicorn
from logger import logger
def main():
uvicorn.run("web_testbench:app", host="0.0.0.0", port=80)