use better start message

This commit is contained in:
Robert Resch 2022-05-18 01:49:59 +02:00
parent a226605e7e
commit b984261749
2 changed files with 2 additions and 2 deletions

View file

@ -125,7 +125,7 @@ async def start():
# Start web servers
await web_server.start()
bumperlog.info("Starting Bumper successful")
bumperlog.info("Bumper started successfully")
# Start maintenance
while not shutting_down:
asyncio.create_task(maintenance())

View file

@ -28,7 +28,7 @@ async def test_start_stop(debug: bool):
l.check_present(("bumper", "INFO", "Starting Bumper"))
while True:
try:
l.check_present(("bumper", "INFO", "Starting Bumper successful"))
l.check_present(("bumper", "INFO", "Bumper started successfully"))
break
except AssertionError:
pass