diff --git a/logging.py b/logging.py index 204dcb2..9c33b00 100644 --- a/logging.py +++ b/logging.py @@ -193,7 +193,7 @@ def gridLog(**kw): """ import os - if not bool( os.environ.get('GRIDLOG_ON', False) ): + if not bool( int(os.environ.get('GRIDLOG_ON', 0)) ): return url = os.environ.get('GRIDLOG_DEST')