From 52367e53f5add78e23aa4cef4c740d1f01d9c9e1 Mon Sep 17 00:00:00 2001 From: Jakob Ketterl Date: Sun, 3 May 2020 17:46:32 +0200 Subject: [PATCH] remove the debugging --- owrx/controllers/assets.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/owrx/controllers/assets.py b/owrx/controllers/assets.py index 9c609ec..88563e5 100644 --- a/owrx/controllers/assets.py +++ b/owrx/controllers/assets.py @@ -6,10 +6,6 @@ import os import pkg_resources from abc import ABCMeta, abstractmethod -import logging - -logger = logging.getLogger(__name__) - class AssetsController(Controller, metaclass=ABCMeta): def getModified(self, file): @@ -92,9 +88,7 @@ class CompiledAssetsController(Controller): return files = CompiledAssetsController.profiles[profileName] - logger.debug(files) files = [pkg_resources.resource_filename("htdocs", f) for f in files] - logger.debug(files) modified = self.getModified(files)