1234567891011121314151617 |
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- '''
- @Auther :liuyuqi.gov@msn.cn
- @Time :2018/7/8 14:01
- @File :t_logging.py
- '''
- import logging
- import logging.config
- logging.config.fileConfig("logger.conf")
- logger = logging.getLogger("example01")
- logger.debug('This is debug message')
- logger.info('This is info message')
- logger.warning('This is warning message')
|