-
Notifications
You must be signed in to change notification settings - Fork 483
Log Levels
Job Evers‐Meltzer edited this page Aug 12, 2016
·
1 revision
Whenever there is an ERROR in the log, it is a bug and needs to be fixed.
To be used when something has potentially gone wrong, but is otherwise recoverable. WARNINGS should frequently be reviewed to make sure that we aren't missing errors, or perhaps more elegantly handle recovery, etc.
Everything INFO and above is persisted. Statements at this level should be able to provide context for the state of the app and be useful for tracking down bugs or diagnosing WARNING and ERROR messages.
DEBUG statements are not persisted. This level is only for messages that would be useful to developers running with console logging on.
Not currently used.