diff --git a/src/context/service/database/Link.py b/src/context/service/database/Link.py
index e2060c4542bebad82b1ed83dbcce612114862ae7..ccc22a472c4f3bcfc0655e9456f0b4403a3f6f9d 100644
--- a/src/context/service/database/Link.py
+++ b/src/context/service/database/Link.py
@@ -159,15 +159,15 @@ def link_set(db_engine : Engine, messagebroker : MessageBroker, request : Link)
             stmt = stmt.returning(TopologyLinkModel.topology_uuid)
             topology_uuids = session.execute(stmt).fetchall()
 
-            LOGGER.warning('RAW topology_uuids={:s}'.format(str(topology_uuids)))
+            #LOGGER.warning('RAW topology_uuids={:s}'.format(str(topology_uuids)))
             if len(topology_uuids) > 0:
                 topology_uuids = [topology_uuid[0] for topology_uuid in topology_uuids]
-                LOGGER.warning('NEW topology_uuids={:s}'.format(str(topology_uuids)))
+                #LOGGER.warning('NEW topology_uuids={:s}'.format(str(topology_uuids)))
                 query = session.query(TopologyModel)
                 query = query.filter(TopologyModel.topology_uuid.in_(topology_uuids))
                 link_topologies : List[TopologyModel] = query.all()
                 link_topology_ids = [obj.dump_id() for obj in link_topologies]
-                LOGGER.warning('link_topology_ids={:s}'.format(str(link_topology_ids)))
+                #LOGGER.warning('link_topology_ids={:s}'.format(str(link_topology_ids)))
 
         return updated or updated_endpoints, link_topology_ids