mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-01 01:24:48 +08:00
14 lines
276 B
Python
14 lines
276 B
Python
"""
|
|
Small classes to assist with timezone calculations, LOGGER configuration,
|
|
and other common operations.
|
|
"""
|
|
|
|
import logging
|
|
import logging.config
|
|
|
|
def configure_logging():
|
|
logging.config.fileConfig(
|
|
'logging.cfg',
|
|
disable_existing_loggers = False
|
|
)
|