feat: also write overridden journal output to stdout with prefix

This commit is contained in:
Nicholas Dudfield
2026-03-27 20:43:47 +07:00
parent 739ebfaba4
commit 6d2a0b4e8b

View File

@@ -69,6 +69,7 @@ public:
static std::mutex mtx;
std::lock_guard lock(mtx);
std::cerr << partition_ << ":" << text << std::endl;
std::cout << "stdout: " << partition_ << ":" << text << std::endl;
}
};