Creating loggers
There are two ways to make a logger: the factory helpers, which build a sink and register the logger
There are two ways to make a logger: the factory helpers, which build a sink and register the logger
Loggers are shared_ptr-owned. The registry holds one reference, you typically hold another (or
One logger, several destinations โ this is the standard shape for a real application: everything to
The registry is a global nameโlogger map. It's what makes spdlog::get("db") work from any file in