diff --git a/src/service/clmcservice/__init__.py b/src/service/clmcservice/__init__.py
index 8ffb6251225ecbac4907be35e431e3c5d5d05853..6b5c6e48116c354697b98c227f0c0e3903791205 100644
--- a/src/service/clmcservice/__init__.py
+++ b/src/service/clmcservice/__init__.py
@@ -68,7 +68,7 @@ def main(global_config, **settings):
     # add routes of the GRAPH API
     config.add_route('graph_build', '/graph/temporal')
     config.add_route('temporal_graph_manage', '/graph/temporal/{graph_id}')
-    config.add_route('full_graph_manage', '/graph/{sfc_id}')
+    config.add_route('full_graph_manage', '/graph/static/{sfc_id}')
     config.add_route('graph_algorithms_rtt', '/graph/temporal/{graph_id}/round-trip-time')
     config.add_route('graph_network_topology', '/graph/network')
     config.add_route('graph_execute_pipeline', '/graph/monitor')
diff --git a/src/service/clmcservice/graphapi/utilities.py b/src/service/clmcservice/graphapi/utilities.py
index a87ffbf7a22bc03879aa61d98f9688e43c8c99e3..10b0a311c89e761d0abaa03059d5af9a98ded710 100644
--- a/src/service/clmcservice/graphapi/utilities.py
+++ b/src/service/clmcservice/graphapi/utilities.py
@@ -501,6 +501,4 @@ def depth_first_search(graph, root_node):
     # yield the elements in post order
     while len(post_order) > 0:
         node = post_order.pop()
-        print(node["name"])
         yield node
-        log.debug("Yielding node {0}".format(node["name"]))