From 65c989aab5356ea7951a700ce935060c57f6fa2b Mon Sep 17 00:00:00 2001 From: sh4un <97253929+sh4un-dot-com@users.noreply.github.com> Date: Tue, 18 Nov 2025 19:25:55 -0500 Subject: [PATCH] Update run_bridge.py --- run_bridge.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/run_bridge.py b/run_bridge.py index 5ff36ef..3fd5d74 100644 --- a/run_bridge.py +++ b/run_bridge.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # run_bridge.py """ -Executable script to initialize and run the Akita Meshtastic Bridge (AMMB). +Executable script to initialize and run the Akita Meshtastic Meshcore Bridge (AMMB). This script handles: - Checking for essential dependencies. @@ -52,7 +52,7 @@ except ImportError as e: if __name__ == "__main__": # Basic logging setup until config is loaded logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s') - logging.info("--- Akita Meshtastic Bridge Starting ---") + logging.info("--- Akita Meshtastic Meshcore Bridge Starting ---") # --- Configuration Loading --- config_path = os.path.join(project_root, CONFIG_FILE) @@ -88,5 +88,5 @@ if __name__ == "__main__": bridge.stop() sys.exit(1) - logging.info("--- Akita Meshtastic Bridge Stopped ---") + logging.info("--- Akita Meshtastic Meshcore Bridge Stopped ---") sys.exit(0)