From 51bb3f5b07deede2506bb242eb8586e8307aedf4 Mon Sep 17 00:00:00 2001 From: Charlie Crane Date: Tue, 4 Feb 2025 14:26:55 +0000 Subject: [PATCH] #2887 - Removal of un-necessary print statement that was used for debugging --- src/primaite/simulator/network/hardware/base.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/primaite/simulator/network/hardware/base.py b/src/primaite/simulator/network/hardware/base.py index 29d46164..6543d793 100644 --- a/src/primaite/simulator/network/hardware/base.py +++ b/src/primaite/simulator/network/hardware/base.py @@ -2250,8 +2250,6 @@ class Node(SimComponent, ABC): # Turn on all the applications in the node for app_id in self.applications: - print(app_id) - print(f"Starting application:{self.applications[app_id].config.type}") self.applications[app_id].run() def _install_system_software(self) -> None: