diff options
author | Pjotr Prins | 2016-06-18 06:24:01 +0000 |
---|---|---|
committer | Pjotr Prins | 2016-06-18 06:24:14 +0000 |
commit | 540926af239735854084ec1cfe06a3bd4fed8977 (patch) | |
tree | d3ff2292b4666a4d88b9f6771cf2eab5edbd4dab /wqflask/utility/logger.py | |
parent | 93e3878c8b97ecbf28630e4bb3733a29f4cf45aa (diff) | |
download | genenetwork2-540926af239735854084ec1cfe06a3bd4fed8977.tar.gz |
Logger: introducing logging
Diffstat (limited to 'wqflask/utility/logger.py')
-rw-r--r-- | wqflask/utility/logger.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/wqflask/utility/logger.py b/wqflask/utility/logger.py new file mode 100644 index 00000000..85a64438 --- /dev/null +++ b/wqflask/utility/logger.py @@ -0,0 +1,8 @@ +# GeneNetwork logger +# +# The standard python logging module is very good. This logger adds a +# few facilities on top of that. Main one being that it picks up +# settings for log levels (global and by module) and (potentially) +# offers some fine grained log levels for the standard levels. +# +# Global settings (defined in default_settings.py). |