@brief Set string based configuration value @param value Value to set. Values have to be std::string; For boolean values use "true", "false", for any integral values use them in quotes. They will be parsed when configuring
| 1755 | /// @param value Value to set. Values have to be std::string; For boolean values use "true", "false", for any integral values |
| 1756 | /// use them in quotes. They will be parsed when configuring |
| 1757 | inline void setValue(const std::string& value) { |
| 1758 | m_value = value; |
| 1759 | } |
| 1760 | |
| 1761 | virtual void log(el::base::type::ostream_t& os) const; |
| 1762 |