Logging practices
This post covers some logging practices for the back-end (Node.js) apps. Avoid putting unique identifiers (e.g., user id) within the message. A unique id will produce a lot of different messages with the same context. Use it as a message parameter. ...
Mar 3, 20231 min read33