Skip to content

Commit

Permalink
Improve error message when a project cannot be parsed.
Browse files Browse the repository at this point in the history
  • Loading branch information
grossmj committed Sep 23, 2024
1 parent d1a7474 commit 7b5d123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gns3server/controller/topology.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ def load_topology(path):
try:
_check_topology_schema(topo)
except aiohttp.web.HTTPConflict as e:
log.error("Can't load the topology %s", path)
log.error("Can't load the topology %s, please check using the debug mode...", path)
raise e

if changed:
Expand Down

0 comments on commit 7b5d123

Please sign in to comment.