Slog-multi is pretty cool

This isn’t my project but something I came across yesterday that’s really useful. It’s called slog-multi and can be found on GitHub. Their intro describes it as: “Design workflows of slog handlers: pipeline, middleware, fanout, routing, failover, load balancing…”

It does a lot more than what I need but my use case is for the ability to output logs to both stdout and a log file at the same time. On top of that, I use a custom log handler for stdout called tint that colorizes the output. Not something that I want in the log file. slog-multi allows me to handle all of these special cases for my logs, adding a lot of flexibility to the already great slog package. :+1: