You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. import logger from '@infobiotech/js-logger';
2.
3. // other imports...
4.
5. // Initialize the logger with application-wide log level
6. logger.init({
7. logLevel: logger.INFO,
8. });
9.
10. // for each container, set the name and the log level
11. const logContainerName = 'App';
12. logger.setLogLevel(log.INFO, logContainerName);
13.
14. logger.info(logContainerName, 'methodName', 'message', {
15. // data keys to be logged
16. });
line 12: log.INFO should be logger.INFO
The text was updated successfully, but these errors were encountered:
type error in README.md file:
in Basic Usage section
line 12: log.INFO should be logger.INFO
The text was updated successfully, but these errors were encountered: