aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility
diff options
context:
space:
mode:
authorBonfaceKilz2021-11-24 13:00:49 +0300
committerBonfaceKilz2021-11-25 21:08:54 +0300
commit8a7894182a6b4d6a47f6a677c304d2a2256ca154 (patch)
tree93fb9eb0d2ac893c45580d5853f4c639c6c85c50 /wqflask/utility
parent16116373899b44e0f0a3894f1f2e5b7f60a5d498 (diff)
downloadgenenetwork2-8a7894182a6b4d6a47f6a677c304d2a2256ca154.tar.gz
Delete noisy logging
Diffstat (limited to 'wqflask/utility')
-rw-r--r--wqflask/utility/tools.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py
index f28961ec..db0b4320 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -194,7 +194,6 @@ def locate(name, subdir=None):
if valid_path(base):
lookfor = base + "/" + name
if valid_file(lookfor):
- logger.info("Found: file " + lookfor + "\n")
return lookfor
else:
raise Exception("Can not locate " + lookfor)
@@ -220,9 +219,7 @@ def locate_ignore_error(name, subdir=None):
if valid_path(base):
lookfor = base + "/" + name
if valid_file(lookfor):
- logger.debug("Found: file " + name + "\n")
return lookfor
- logger.info("WARNING: file " + name + " not found\n")
return None