Skip to content

Logging in Node.js

Logging help you know what the heck is going on in the application. However regardless of what you choose, logging affects performance of the application/request in some form, because that's additional work the process will have to do. There is no escaping that. However what can be done is, to find an effective strategy to make the work more efficient and less overhead.

One of the ways to log is using console.log, which is ready-to-use, and without any other dependency or configuration. Hence it makes is so much tempting to use it without thinking. By default, writes to stdout and stderr.

The console.log function is a synchronous process, meaning it is a blocking call, which directly adds latency on the action being performed, and in worst case can break the execution flow of the request because of accidental code. Hence choosing another implementation/library early on saves from a trouble down the road.

What do we get from libraries?

  • Latency improvement
  • Ability to write logs to stream-like destinations (other than stdout and stderr), example: writing to a file
  • Logging to multiple destinations
  • Data serialization and redaction from logs
  • Control over log visibility by level. In some cases, without having a need to reload a running application
  • Safety from bad code

Anything better exists?

Logging using one of the libraries is great, but it's even better if APM tools do this automatically.

References


Last update: May 6, 2024