Logging in a Rust application

Ray Suliteanu
4 min readApr 7, 2024
Photo by Charlotte Harrison on Unsplash

This blog post is part of a series I’m developing documenting my evolution as a Rust developer. Currently I’m a newbie, but I’m making progress.

As a newbie, please feel free in the comments to elaborate on what I might be doing wrong, could do better or is not “canonical” Rust.

Logging is obviously a key aspect of a production-ready application. While one could use println! or dbg! or…

--

--