Skip to content

Commit

Permalink
Log when the Matter server finished startup (#827)
Browse files Browse the repository at this point in the history
  • Loading branch information
agners committed Jul 22, 2024
1 parent 8d6b295 commit 4d77f1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions matter_server/server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,8 +181,8 @@ async def start(self) -> None:

await self._device_controller.initialize()
await self.storage.start()
await self._device_controller.start()
await self.vendor_info.start()
await self._device_controller.start()
mount_websocket(self, "/ws")
self.app.router.add_route("GET", "/info", self._handle_info)

Expand All @@ -207,7 +207,7 @@ async def start(self) -> None:
self._runner, host=self.listen_addresses, port=self.port
)
await self._http.start()
self.logger.debug("Webserver initialized.")
self.logger.info("Matter Server successfully initialized.")

async def stop(self) -> None:
"""Stop running the server."""
Expand Down

0 comments on commit 4d77f1d

Please sign in to comment.