From 30671cbdbc6b6f95af0574fe7fdba8d8d6c3474f Mon Sep 17 00:00:00 2001 From: Hemna Date: Wed, 6 Oct 2021 12:54:29 -0400 Subject: [PATCH] Added some server startup info logs This patch adds some general info logs around starting the client connection as well as loading the plugins. --- aprsd/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/aprsd/main.py b/aprsd/main.py index af88327..3e911da 100644 --- a/aprsd/main.py +++ b/aprsd/main.py @@ -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()