Skip to content

Commit

Permalink
fix: realtime logging stderr annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Disservin committed Nov 15, 2024
1 parent 6d2e973 commit 2715cb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/engine/process/process_posix.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ class Process : public IProcess {

lines.emplace_back(Line{current_line_, time});

if (realtime_logging_) Logger::readFromEngine(current_line_, time, log_name_);
if (realtime_logging_) Logger::readFromEngine(current_line_, time, log_name_, searchword.empty());
if (!searchword.empty() && current_line_.rfind(searchword, 0) == 0) return Status::OK;

current_line_.clear();
Expand Down

0 comments on commit 2715cb4

Please sign in to comment.