From deed49e9a11961ec9a00885af09b353e99d4123e Mon Sep 17 00:00:00 2001
From: Fredrik Wrede <fredrik@scaleoutsystems.com>
Date: Fri, 6 Oct 2023 13:25:26 +0000
Subject: [PATCH] fix print

---
 fedn/fedn/network/combiner/round.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fedn/fedn/network/combiner/round.py b/fedn/fedn/network/combiner/round.py
index 110c70c22..dd41deee3 100644
--- a/fedn/fedn/network/combiner/round.py
+++ b/fedn/fedn/network/combiner/round.py
@@ -204,9 +204,9 @@ def stage_model(self, model_id, timeout_retry=3, retry=2):
 
         # If the model is already in memory at the server we do not need to do anything.
         if self.modelservice.models.exist(model_id):
-            print("MODEL EXISTST (NOT)", flush=True)
+            print("ROUNDCONTROL: Model already exists in memory, skipping model staging.", flush=True)
             return
-        print("MODEL STAGING", flush=True)
+        print("ROUNDCONTROL: Model Staging, fetching model from storage...", flush=True)
         # If not, download it and stage it in memory at the combiner.
         tries = 0
         while True: