Skip to content

Commit

Permalink
use better start message
Browse files Browse the repository at this point in the history
  • Loading branch information
edenhaus committed May 17, 2022
1 parent a226605 commit b984261
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bumper/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
2 changes: 1 addition & 1 deletion tests/test_init.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b984261

Please sign in to comment.