| 2860 | } |
| 2861 | |
| 2862 | void Loggers::reconfigureAllLoggers(const Configurations& configurations) { |
| 2863 | for (base::RegisteredLoggers::iterator it = ELPP->registeredLoggers()->begin(); |
| 2864 | it != ELPP->registeredLoggers()->end(); ++it) { |
| 2865 | Loggers::reconfigureLogger(it->second, configurations); |
| 2866 | } |
| 2867 | } |
| 2868 | |
| 2869 | void Loggers::reconfigureAllLoggers(Level level, ConfigurationType configurationType, |
| 2870 | const std::string& value) { |
nothing calls this directly
no test coverage detected