1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-04-10 05:28:58 -04:00

Added some server startup info logs

This patch adds some general info logs around starting the
client connection as well as loading the plugins.
This commit is contained in:
Hemna 2021-10-06 12:54:29 -04:00
parent fdc8c0cd66
commit 30671cbdbc

View File

@ -465,9 +465,11 @@ def server(
sys.exit(-1)
# Creates the client object
LOG.info("Creating client connection")
client.factory.create().client
# Create the initial PM singleton and Register plugins
LOG.info("Loading Plugin Manager and registering plugins")
plugin_manager = plugin.PluginManager(config)
plugin_manager.setup_plugins()