aws / aws/aws-lambda-python-runtime-interface-client
Library is swallowing log messages from function code
未关闭
- 主要语言
- Python
- 星标
- 294
- 派生
- 84
- 平均合并
- 3 天 7 分钟
- 30 天内合并 PR
- 3
描述
I'm using logging messages in my python code, but none of those are ever visible. I'm currently configuring my logger like so:
```python
formatter = json_log_formatter.JSONFormatter()
handler = logging.StreamHandler(sys.stdout)
if conf.USE_JSON_LOGGING:
handler.setFormatter(formatter)
logging.basicConfig(
level=logging.INFO,
format='[%(asctime)s] {%(filename)s:%(lineno)d} %(levelname)s - %(message)s', # noqa
handlers=[handler],
)
logger = logging.getLogger(__name__)
```
However, I never see the logs. Where are they going?
贡献指南
评估
这个 Issue 还没有评估数据。