From 593e3795239b922018743712dce9aa06a8ca8399 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 7 Oct 2020 15:19:09 +1030 Subject: [PATCH] Add info log to show where custom symbols are searched from. --- gns3server/controller/symbols.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gns3server/controller/symbols.py b/gns3server/controller/symbols.py index af53f32b..3d6e8e64 100644 --- a/gns3server/controller/symbols.py +++ b/gns3server/controller/symbols.py @@ -94,6 +94,7 @@ class Symbols: directory = self.symbols_path() if directory: + log.info("Searching for custom symbols in '{}'".format(directory)) for root, _, files in os.walk(directory): for filename in files: if filename.startswith('.'):