![]() |
IRSOL
C++ code implementing socket server for interacting with Baumer camera.
|
Manages a registry of named loggers. More...
#include <logging.hpp>
Static Public Member Functions | |
static spdlog::logger * | getLogger (const std::string &name) |
Retrieves a logger by name from the registry. | |
Static Private Attributes | |
static std::unordered_map< std::string, LoggerInfo > | m_loggers |
Internal logger registry. | |
Manages a registry of named loggers.
Provides access to named logger instances and stores metadata for reuse and caching.
Definition at line 116 of file logging.hpp.
|
static |
Retrieves a logger by name from the registry.
If the logger does not exist yet, it is created and registered.
name | The name of the logger. |
Definition at line 12 of file logging.cpp.
|
staticprivate |
Internal logger registry.
Definition at line 130 of file logging.hpp.