AttributeError: module 'logger' has no attribute 'info'
时间: 2023-06-15 08:05:58 浏览: 736
求解报错:AttributeError:module ‘os’ has no attribute ‘exit’
这个错误通常是因为你在代码中使用了 `logger.info()` 方法,但是你没有正确地导入 `logger` 模块。
你需要确保在代码中正确导入了 `logger` 模块。例如,如果你使用的是 Python 内置的 `logging` 模块,你需要在代码中导入它:
```python
import logging
logger = logging.getLogger(__name__)
logger.info("This is an info message.")
```
如果你使用的是其他第三方日志库,你需要按照相应的文档导入并使用它们的日志方法。
阅读全文