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.
...
zsevic.hashnode.dev1 min read