Thousands of hours have been wasted on bloated JSON logging frameworks in JavaScript. Yet this is all that's needed. You just define the type of your logs, and then wrap `console.log` with the type.

Thousands of hours have been wasted on bloated JSON logging frameworks in JavaScript. Yet this is all that's needed. You just define the type of your logs, and then wrap `console.log` with the type.

Last I checked `console.log` is not a recommended way of logging for node since it is synchronous, hence the need for "bloated" systems. I suppose this works if you don't have high throughput needs.