about summary refs log tree commit diff
path: root/wqflask/utility
diff options
context:
space:
mode:
Diffstat (limited to 'wqflask/utility')
-rw-r--r--wqflask/utility/logger.py15
-rw-r--r--wqflask/utility/tools.py25
2 files changed, 33 insertions, 7 deletions
diff --git a/wqflask/utility/logger.py b/wqflask/utility/logger.py
index 0549a7fa..479f6c46 100644
--- a/wqflask/utility/logger.py
+++ b/wqflask/utility/logger.py
@@ -13,6 +13,11 @@
 #   import utility.logger
 #   logger = utility.logger.getLogger(__name__ )
 #
+# To override global behaviour set the LOG_LEVEL in default_settings.py
+# or use an environment variable, e.g.
+#
+#    env LOG_LEVEL=INFO ./bin/genenetwork2
+#
 # To override log level for a module replace that with, for example,
 #
 #   import logging
@@ -22,18 +27,16 @@
 # We'll add more overrides soon.
 
 import logging
-
 from utility.tools import LOG_LEVEL
 
-print("Set global log level to "+LOG_LEVEL)
-
-log_level = getattr(logging, LOG_LEVEL.upper())
-logging.basicConfig(level=log_level)
-
 # Get the module logger. You can override log levels at the
 # module level
 def getLogger(name, level = None):
     logger = logging.getLogger(name)
     if level:
         logger.setLevel(level)
+    else:
+        logger.setLevel(LOG_LEVEL)
+
+    logger.debug("Log "+name+" at level "+logging.getLevelName(logger.getEffectiveLevel()))
     return logger
diff --git a/wqflask/utility/tools.py b/wqflask/utility/tools.py
index 1b31857e..bfb379f2 100644
--- a/wqflask/utility/tools.py
+++ b/wqflask/utility/tools.py
@@ -50,7 +50,7 @@ def get_setting(command_id,guess=None):
             command = value(guess)
             if command == None or command == "":
                 raise Exception(command_id+' setting unknown or faulty (update default_settings.py?).')
-    logger.info("Set "+command_id+"="+str(command))
+    logger.debug("Set "+command_id+"="+str(command))
     return command
 
 def get_setting_bool(id):
@@ -143,6 +143,29 @@ def locate_ignore_error(name, subdir=None):
 def tempdir():
     return valid_path(get_setting("TEMPDIR","/tmp"))
 
+BLUE  = '\033[94m'
+GREEN = '\033[92m'
+BOLD  = '\033[1m'
+ENDC  = '\033[0m'
+
+def show_settings():
+    from utility.tools import LOG_LEVEL
+
+    print("Set global log level to "+BLUE+LOG_LEVEL+ENDC)
+    log_level = getattr(logging, LOG_LEVEL.upper())
+    logging.basicConfig(level=log_level)
+
+    logger.info(BLUE+"Mr. Mojo Risin 2"+ENDC)
+    print "runserver.py: ****** The webserver has the following configuration ******"
+    keylist = app.config.keys()
+    keylist.sort()
+    for k in keylist:
+        try:
+            print("%s %s%s%s%s" % (k,BLUE,BOLD,get_setting(k),ENDC))
+        except:
+            print("%s %s%s%s%s" % (k,GREEN,BOLD,app.config[k],ENDC))
+
+
 # Cached values
 WEBSERVER_MODE     = get_setting('WEBSERVER_MODE')
 LOG_LEVEL          = get_setting('LOG_LEVEL')