数据科学 - 日志

日志记录对于了解运行程序时发生的事件非常有价值。例如, 如果您在夜间运行模型, 并看到它在第二天产生了荒谬的结果, 日志消息可以真正帮助您更好地了解发生这种情况的上下文。让我们了解使日志消息有效的特性。

日志消息

日志记录是记录消息以描述运行软件时发生的事件的过程。让我们看几个例子, 并学习编写好日志消息的提示。

小贴士: 要专业、清晰

Bad: Hmmm... this isn't working???
Bad: idk.... :(
Good: Couldn't parse file.

提示: 要简洁, 并使用正常大小写

Bad: Start Product Recommendation Process
Bad: We have completed the steps necessary and will now proceed with the recommendation process for the records in our product database.
Good: Generating product recommendations.

提示: 选择适当的日志记录级别

debug-用于程序中发生的任何事情。
错误-用于记录发生的任何错误
信息-用于记录用户驱动或特定于系统的所有操作, 例如定期计划的操作

提示: 提供任何有用的信息

Bad: Failed to read location data
Good: Failed to read location data: store_id 8324971

你可能感兴趣的:(数据科学 - 日志)