Skip to content

Commit

Permalink
order loaded modules for logging
Browse files Browse the repository at this point in the history
  • Loading branch information
bkbilly committed Nov 3, 2024
1 parent e81daef commit da9c1a0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lnxlink/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ def start(self, exclude_modules_arg):
logger.debug(
traceback.format_exc(),
)
logger.info("Loaded addons: %s", ", ".join(self.addons.keys()))
loaded = list(self.addons.keys())
loaded.sort()
logger.info("Loaded addons: %s", ", ".join(loaded))

# Setup MQTT
return self.setup_mqtt()
Expand Down

0 comments on commit da9c1a0

Please sign in to comment.