| 2839 | } |
| 2840 | |
| 2841 | Logger* Loggers::reconfigureLogger(Logger* logger, const Configurations& configurations) { |
| 2842 | if (!logger) return nullptr; |
| 2843 | logger->configure(configurations); |
| 2844 | return logger; |
| 2845 | } |
| 2846 | |
| 2847 | Logger* Loggers::reconfigureLogger(const std::string& identity, const Configurations& configurations) { |
| 2848 | return Loggers::reconfigureLogger(Loggers::getLogger(identity), configurations); |
nothing calls this directly
no test coverage detected