logging: Fix reporter message

This commit is contained in:
Arne Welzel 2025-01-14 10:09:12 +01:00
parent 345c4ca28a
commit fd2229e7bb

View file

@ -1737,7 +1737,7 @@ WriterFrontend* Manager::CreateWriterForFilter(Filter* filter, const std::string
bool Manager::WriteBatchFromRemote(const detail::LogWriteHeader& header, std::vector<detail::LogRecord>&& records) {
Stream* stream = FindStream(header.stream_id.get());
if ( ! stream ) {
reporter->Error("Failed to find stream for !");
reporter->Error("Failed to find stream %s for remote write", header.stream_name.c_str());
return false;
}