I am working on an Angular project and interested in incorporating the ngx-logger framework to customize logging levels for specific components or classes.
For example, if my Angular application consists of 5 different components or classes and the Root level is set to INFO by default. I would like the ability to switch the logging level to DEBUG for only one specific component or class. This way, I will receive debug messages exclusively for that particular component or class without affecting the rest. Is it feasible to achieve this?
This functionality is akin to Java's Log4j, which enables users to configure distinct log levels for certain packages.
If ngx-logger does not offer this capability, do you happen to know of any other Angular logging frameworks that cater to such requirements?