Skip to content

Commit 4bc901a

Browse files
committed
remove unnceseary debug log
1 parent 4b453e0 commit 4bc901a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

cesnet_service_path_plugin/templates/cesnet_service_path_plugin/servicepath.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,9 @@ <h5 class="card-header">Service Path</h5>
5050
<div class="col col-12">
5151
<div class="card">
5252
<h5 class="card-header">
53-
{% trans "Service Path Topology" %}
53+
{% trans "Topology of" %}
54+
{{ object.name }}
55+
{% trans "Service Path" %}
5456
</h5>
5557
<div class="card-body">
5658
<div id="cy-topology" data-topology='{{ topology_data|safe }}' class="cy-topology" ></div>

cesnet_service_path_plugin/views/service_path.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ def get_extra_context(self, request, instance):
2727
# Build topology data using utility function
2828
topology_data = build_service_path_topology(instance)
2929

30-
logger.debug(f"Topology data: {topology_data}")
31-
3230
# Serialize to JSON for template
3331
context["topology_data"] = json.dumps(topology_data)
3432

0 commit comments

Comments
 (0)