mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-14 16:55:42 +00:00
Add different logging levels.
This commit is contained in:
parent
682ca30991
commit
2991082f1f
32
config.py
32
config.py
@ -40,13 +40,15 @@ class DevelopmentConfig(Config):
|
|||||||
file_path = os.path.join(os.getcwd(), 'logs/opaque_web.log')
|
file_path = os.path.join(os.getcwd(), 'logs/opaque_web.log')
|
||||||
log = open(file_path, 'w+')
|
log = open(file_path, 'w+')
|
||||||
log.close()
|
log.close()
|
||||||
log_format = ("%(asctime)s - %(levelname)s - %(name)s - "
|
if os.environ.get('FLASK_CONFIG') == 'development':
|
||||||
"%(filename)s - %(lineno)d - %(message)s")
|
log_format = ("%(asctime)s - %(levelname)s - %(name)s - "
|
||||||
logging.basicConfig(filename='logs/opaque_web.log', level='WARNING',
|
"%(filename)s - %(lineno)d - %(message)s")
|
||||||
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
logging.basicConfig(filename='logs/opaque_web.log', level='WARNING',
|
||||||
filemode='w')
|
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
||||||
logger = logging.getLogger(__name__)
|
filemode='w')
|
||||||
logger.warning('Logging has started with level WARNING.')
|
logger = logging.getLogger(__name__)
|
||||||
|
logger.warning('Logging has started with level WARNING.'
|
||||||
|
' From development config.')
|
||||||
|
|
||||||
|
|
||||||
class TestingConfig(Config):
|
class TestingConfig(Config):
|
||||||
@ -71,13 +73,15 @@ class ProductionConfig(Config):
|
|||||||
file_path = os.path.join(os.getcwd(), 'logs/opaque_web.log')
|
file_path = os.path.join(os.getcwd(), 'logs/opaque_web.log')
|
||||||
log = open(file_path, 'w+')
|
log = open(file_path, 'w+')
|
||||||
log.close()
|
log.close()
|
||||||
log_format = ("%(asctime)s - %(levelname)s - %(name)s - "
|
if os.environ.get('FLASK_CONFIG') == 'production':
|
||||||
"%(filename)s - %(lineno)d - %(message)s")
|
log_format = ("%(asctime)s - %(levelname)s - %(name)s - "
|
||||||
logging.basicConfig(filename='logs/opaque_web.log', level='ERROR',
|
"%(filename)s - %(lineno)d - %(message)s")
|
||||||
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
logging.basicConfig(filename='logs/opaque_web.log', level='ERROR',
|
||||||
filemode='w')
|
format=log_format, datefmt='%Y-%m-%d %H:%M:%S',
|
||||||
logger = logging.getLogger(__name__)
|
filemode='w')
|
||||||
logger.error('Logging has started with level ERROR.')
|
logger = logging.getLogger(__name__)
|
||||||
|
logger.error('Logging has started with level ERROR.'
|
||||||
|
' From production config.')
|
||||||
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
Loading…
Reference in New Issue
Block a user