mirror of https://github.com/dnomd343/ProxyC
dnomd343
2 years ago
2 changed files with 13 additions and 3 deletions
@ -1,10 +1,18 @@ |
|||
#!/usr/bin/env python3 |
|||
# -*- coding: utf-8 -*- |
|||
|
|||
from Basis import Constant |
|||
|
|||
Constant.LogLevel = 'DEBUG' |
|||
|
|||
from Utils.Logger import logger |
|||
|
|||
import requests |
|||
|
|||
logger.debug('debug') |
|||
logger.info('info') |
|||
logger.warning('warning') |
|||
logger.error('error') |
|||
logger.critical('critical') |
|||
|
|||
requests.get('https://baidu.com') |
|||
|
Loading…
Reference in new issue