Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们需要记录我们从外部服务接收到的大消息。
此响应可以是更大的 json 或 xml,最多可以有 50 mb。
最好的做法是什么?我们可以简单地登录logger.info(payload)吗?
logger.info(payload)
谢谢你的回答。
在生产环境中不建议这样做,因为它会影响日志文件的使用效率。如果消息包含敏感数据,也会引发安全问题。
如果仍然需要这样做,可以使用以下方法之一:
logger.debug(payload)
FileAppender