From e592b95639df0f768300188063d3e4ae5a855963 Mon Sep 17 00:00:00 2001 From: grossmj Date: Wed, 7 Oct 2020 15:20:28 +1030 Subject: [PATCH] Revert "Add info log to show where custom symbols are searched from." This reverts commit 593e3795 --- gns3server/controller/symbols.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gns3server/controller/symbols.py b/gns3server/controller/symbols.py index 3d6e8e643..af53f32b1 100644 --- a/gns3server/controller/symbols.py +++ b/gns3server/controller/symbols.py @@ -94,7 +94,6 @@ def list(self): 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('.'):