From d1192b1f244e8976fb53c260179eb3715029ebf4 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sun, 26 Jun 2016 09:50:29 +0000 Subject: gn_server: introduced one new query to fetch a dataset record and force fetch1 to return a tuple --- wqflask/utility/logger.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'wqflask/utility/logger.py') diff --git a/wqflask/utility/logger.py b/wqflask/utility/logger.py index 86ee1c52..ddc0ea82 100644 --- a/wqflask/utility/logger.py +++ b/wqflask/utility/logger.py @@ -48,13 +48,12 @@ class GNLogger: """Set the undelying log level""" self.logger.setLevel(value) - def debug(self,level=0,*args): + def debug(self,*args): """Call logging.debug for multiple args. Use level=num to filter on -LOG_LEVEL_DEBUG. +LOG_LEVEL_DEBUG (NYI). """ - if level <= LOG_LEVEL_DEBUG: - self.collect(self.logger.debug,*args) + self.collect(self.logger.debug,*args) def info(self,*args): """Call logging.info for multiple args""" -- cgit v1.2.3