diff --git a/source/customLogger/__init__.py b/source/customLogger/__init__.py
index 4a9af2e1c8b6e7c314c11f1e9d6a5589c9bd4ae5..8ee29926a5c07ff4084f6022343e19590929af13 100644
--- a/source/customLogger/__init__.py
+++ b/source/customLogger/__init__.py
@@ -1,6 +1,5 @@
 import logging
 from logging_loki import LokiHandler, emitter
-
 # for this is needed for the color level to work in grafana
 emitter.LokiEmitter.level_tag = "level"
 
@@ -11,8 +10,8 @@ handler = LokiHandler(
     version="1",
     )
 
-
 logger = logging.getLogger("ROSE_LOG")
+# At or above INFO will be logged 
 logger.setLevel(logging.INFO)
 logger.addHandler(handler)
 
diff --git a/source/orchestrationLogic/orchestrator.py b/source/orchestrationLogic/orchestrator.py
index f639a59fc8c6aa30b2b4dc3db11b60d253cb9923..d145427c662ac63d146418cfddea3a324d72580f 100644
--- a/source/orchestrationLogic/orchestrator.py
+++ b/source/orchestrationLogic/orchestrator.py
@@ -35,7 +35,6 @@ class Orchestrator:
 
         
         logger.info("Project create api call succeeded" , extra={"tags": {"owner": owner, "project": name}})
-        logger.info(RDPMembers)
         return name
 
     # Checks continously if the project creation is in progress