| 2834 | } |
| 2835 | |
| 2836 | bool Loggers::hasLogger(const std::string& identity) { |
| 2837 | base::threading::ScopedLock scopedLock(ELPP->lock()); |
| 2838 | return ELPP->registeredLoggers()->has(identity); |
| 2839 | } |
| 2840 | |
| 2841 | Logger* Loggers::reconfigureLogger(Logger* logger, const Configurations& configurations) { |
| 2842 | if (!logger) return nullptr; |
nothing calls this directly
no test coverage detected