Home
Go Back
TLDR
Checkout the source code on Github or visit the package NPM page.
Noisy logging problem
When you have a lot of logs in your application, it can be hard to find the one you are looking for. You might write a cli program that does a bunch of asynchronous work and you want to display the logs in a structured way so that it's easy to associate a line of log to a related task. This is where we try to make use of Nodejs' async local storage to track asynchronous context and be able to group related logs together. But before we get into that, let's briefly talk about async local storage.
Async local storage in Node.js
As this article is more about making use of async local storage, we won't go into detail about what it is. However, below we have compiled a list of useful resources to give you a better understanding of what it is and how it works. In short, it's a way to store data in a context that is accessible from anywhere in an asynchronous code execution path. This ease of access saves us the trouble of having to pass down the context manually.
- Async local storage offical docs
- Async hooks official docs
- AdonisJS docs on its HTTP Context and how they used ALS.
- A Pragmatic Overview of Async Hooks API in Node.js
- Introducing Bubbleprof - a novel approach to Node.js async profiling
- Understanding Async Resources with Async Hooks
- Exploring Node.js Async Hooks
- The power of Async Hooks in Node.js
What are we building?
We are building a single file logging utility that will allow us to scope logs with async local storage. We assume that all output will be written to a terminal that supports ANSI escape codes — it is required for erasing the screen and coloring the texts.
The goal is for the user to write as little instrumentation code as possible. Instrumentation code is additional code that a user has to write to make use of a library. For example, in the case of request tracing, the user may have to manually wrap code in library functions to generate the trace. This is instrumentation code. We want to reduce the amount of manual instrumentation and automate it. With that in mind, our logging utility exports only 3 functions — log, withGrouping, withLogManager.
-
The log function will be used to add logs for the current async context.
-
The withGrouping function will be used to create a new async scope which represents a group of logs. Nested scope will be grouped under the parent.
-
The withLogManager function is required as a top-level wrapper which will then allow
log
andwithGrouping
to be called from anywhere.
Below is the code running in the gif above.