DEV Community

Discussion on: Logging Best Practices

Collapse
 
asti profile image
Asti

Most people think of logging as text based, but structured logging to a database is incredibly useful. It allows you to track down specific instances of something failing by searching with parameters you suspect.

You can also save a lot of space by simply storing the hash of log message template, instead of the merged string.