I want to logging in FeathersJS using winston. But, I want to logging with "correlation id". I want to find how I should create the logger, I want to make just log with the message, not supply with correlation id. Here is an example.
log.info('Here is a log');
// output [Info] [correlation-id] : Here is a log
I want to know, how the best approach to make my logger injected with correlation id that different each request?
I have a solution with my question. But I'm still not sure this will effective. I use library such as
Here is my changes after I first time generate FeathersJS Project.
In
src/logger.js
, I use getNamespace and also get a variable from namespace. Here is my example:After this, I finished setup my logger to get correlationId, now to make correlation each my request, I use middleware to make this happen. I will add new middleware to control correlationId in
src/middleware/correlation.js
. Here is my example:After I created my own middleware, I will register that into global middleware in
src/middleware/index.js
. Here is my changes,Until this changes, you already setup logger to get correlationId. For example, I created an hook and will add log there. I place that in
src/hooks/logsHooks
Here my example:When I setup that, I think that is already meet my requirement. But I still need to test this with another case. I just test with some simple case.