| 2898 | } |
| 2899 | |
| 2900 | std::vector<std::string>* Loggers::populateAllLoggerIds(std::vector<std::string>* targetList) { |
| 2901 | targetList->clear(); |
| 2902 | for (base::RegisteredLoggers::iterator it = ELPP->registeredLoggers()->list().begin(); |
| 2903 | it != ELPP->registeredLoggers()->list().end(); ++it) { |
| 2904 | targetList->push_back(it->first); |
| 2905 | } |
| 2906 | return targetList; |
| 2907 | } |
| 2908 | |
| 2909 | void Loggers::configureFromGlobal(const char* globalConfigurationFilePath) { |
| 2910 | std::ifstream gcfStream(globalConfigurationFilePath, std::ifstream::in); |
nothing calls this directly
no test coverage detected