| 172 | } |
| 173 | |
| 174 | void Configuration::log(el::base::type::ostream_t& os) const { |
| 175 | os << LevelHelper::convertToString(m_level) |
| 176 | << ELPP_LITERAL(" ") << ConfigurationTypeHelper::convertToString(m_configurationType) |
| 177 | << ELPP_LITERAL(" = ") << m_value.c_str(); |
| 178 | } |
| 179 | |
| 180 | /// @brief Used to find configuration from configuration (pointers) repository. Avoid using it. |
| 181 | Configuration::Predicate::Predicate(Level level, ConfigurationType configurationType) : |
nothing calls this directly
no outgoing calls
no test coverage detected