Logging Is Powerful

Learn about why logging is powerful in our Rails application.

Crafting informative log messages for efficient troubleshooting and identification

Earlier, we set up lograge to change the format of our logs. The reason is that almost every tool for examining logs assumes one message per line, and that’s not how Rails logs by default. This matters because even the most underfunded production operations system tends to include a way to look at application logs. It might require using ssh to connect to the production server ...