aboutsummaryrefslogtreecommitdiff
path: root/wqflask/utility
diff options
context:
space:
mode:
authorPjotr Prins2016-10-06 14:40:21 +0000
committerPjotr Prins2016-10-06 14:40:21 +0000
commit7c065b65e11dc46f326fd492ca6dac37ee4d8d2f (patch)
tree8aa6c44772dd4c0f0986b14d49d004bfd71ea06f /wqflask/utility
parent94f7e2494f5e48b12ae10c0bf46ebc2367b0eecc (diff)
downloadgenenetwork2-7c065b65e11dc46f326fd492ca6dac37ee4d8d2f.tar.gz
Logger: add more granular debug messages
Diffstat (limited to 'wqflask/utility')
-rw-r--r--wqflask/utility/logger.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/wqflask/utility/logger.py b/wqflask/utility/logger.py
index b873e16f..bacb0aa4 100644
--- a/wqflask/utility/logger.py
+++ b/wqflask/utility/logger.py
@@ -50,11 +50,20 @@ class GNLogger:
self.logger.setLevel(value)
def debug(self,*args):
+ """Call logging.debug for multiple args. Use (lazy) debugf and
+level=num to filter on LOG_LEVEL_DEBUG.
+
+ """
+ self.collect(self.logger.debug,*args)
+
+ def debug20(self,*args):
"""Call logging.debug for multiple args. Use level=num to filter on
LOG_LEVEL_DEBUG (NYI).
"""
- self.collect(self.logger.debug,*args)
+ if level <= LOG_LEVEL_DEBUG:
+ if self.logger.getEffectiveLevel() < 20:
+ self.collect(self.logger.debug,*args)
def info(self,*args):
"""Call logging.info for multiple args"""
@@ -79,7 +88,10 @@ LOG_LEVEL_DEBUG (NYI).
self.collectf(self.logger.debug,*args)
def debugf(self,level=0,*args):
- """Call logging.debug for multiple args lazily"""
+ """Call logging.debug for multiple args lazily and handle
+ LOG_LEVEL_DEBUG correctly
+
+ """
# only evaluate function when logging
if level <= LOG_LEVEL_DEBUG:
if self.logger.getEffectiveLevel() < 20: