Page:
Log Levels
Pages
Branching and Merging
Changelog Format
Component Dependencies Table
Credit calculation script
DHT Resources
Daemon docstring formatting
Development Process & Standards
Error Codes
Home
Labels
Log Levels
Managing Github notifications
Managing Pull Requests
RPC result verification FAQ
Release checklist (daemon)
Remote Debugging
Run full local stack
SDK Disk Space Management Settings
Testing
Wallet Server notes
Zen of LBRY Development
sdk structure in lex's rewrite
No results
1
Log Levels
Job Evers‐Meltzer edited this page 2016-08-12 11:03:01 -05:00
ERROR
Whenever there is an ERROR in the log, it is a bug and needs to be fixed.
WARNING
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.
INFO
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
DEBUG statements are not persisted. This level is only for messages that would be useful to developers running with console logging on.
CRITICAL
Not currently used.