#2887 - Removal of un-necessary print statement that was used for debugging

This commit is contained in:
Charlie Crane
2025-02-04 14:26:55 +00:00
parent 99e38fbbc2
commit 51bb3f5b07

View File

@@ -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: