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
ideally a logger like Log4j that can wrap logging to bypass building strings if logging is off. Even better something like SLF4J because this is a library and why force a user to incorporate my logging library.
if (log.isDebugEnabled()) {
log.debug(`some complex string building ${somevar} etc.`);
}
lots of articles to write your own, plus ngx-logger
The text was updated successfully, but these errors were encountered:
rreganjr
changed the title
replace console logging with a configurable logger
Visual Scheduler: replace console logging with a configurable logger
May 20, 2022
ideally a logger like Log4j that can wrap logging to bypass building strings if logging is off. Even better something like SLF4J because this is a library and why force a user to incorporate my logging library.
lots of articles to write your own, plus ngx-logger
https://github.com/pford68/slf4js - this is probably what I want.
https://dzone.com/articles/angular-logging-and-log-back - this includes server side support for log-back
https://medium.com/@dneimke/configurable-logging-in-angular-projects-30dd5d999db6
https://www.npmjs.com/package/ngx-logger
https://www.codemag.com/article/1711021/Logging-in-Angular-Applications
The text was updated successfully, but these errors were encountered: