
# Python2.7在执行reload(sys)后无法通过print打印日志
建议使用context.getLogger()打印日志：
```
log = context.getLogger()
log.info("test")
```
