| 25 | } |
| 26 | |
| 27 | std::string StringStreamLogSink_Impl::string() const { |
| 28 | std::shared_lock l{m_mutex}; |
| 29 | |
| 30 | return m_stringstream->str(); |
| 31 | } |
| 32 | |
| 33 | std::vector<LogMessage> StringStreamLogSink_Impl::logMessages() const { |
| 34 | return LogMessage::parseLogText(this->string()); |