mirror of
https://github.com/zeek/zeek.git
synced 2025-10-11 11:08:20 +00:00
logging: Fix reporter message
This commit is contained in:
parent
345c4ca28a
commit
fd2229e7bb
1 changed files with 1 additions and 1 deletions
|
@ -1737,7 +1737,7 @@ WriterFrontend* Manager::CreateWriterForFilter(Filter* filter, const std::string
|
||||||
bool Manager::WriteBatchFromRemote(const detail::LogWriteHeader& header, std::vector<detail::LogRecord>&& records) {
|
bool Manager::WriteBatchFromRemote(const detail::LogWriteHeader& header, std::vector<detail::LogRecord>&& records) {
|
||||||
Stream* stream = FindStream(header.stream_id.get());
|
Stream* stream = FindStream(header.stream_id.get());
|
||||||
if ( ! stream ) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue