diff --git a/agent-node/VERSION b/agent-node/VERSION index 6d7de6e..21e8796 100644 --- a/agent-node/VERSION +++ b/agent-node/VERSION @@ -1 +1 @@ -1.0.2 +1.0.3 diff --git a/agent-node/src/agent_node/main.py b/agent-node/src/agent_node/main.py index 02faf4d..c4177ca 100644 --- a/agent-node/src/agent_node/main.py +++ b/agent-node/src/agent_node/main.py @@ -10,6 +10,12 @@ from agent_node.core import updater def main(): + import logging + logging.basicConfig( + level=logging.INFO, + format="%(asctime)s [%(levelname)s] %(name)s: %(message)s", + handlers=[logging.StreamHandler(sys.stdout)] + ) print(f"[*] Starting Agent Node: {NODE_ID}...") # 0. Auto-Update Check (before anything else — if we're behind, restart now)