mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-09 03:58:57 +08:00
11 lines
220 B
Python
11 lines
220 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')
|