summaryrefslogtreecommitdiff
path: root/infra
diff options
context:
space:
mode:
Diffstat (limited to 'infra')
-rw-r--r--infra/pipetrace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/pipetrace.h b/infra/pipetrace.h
index 656b9b9..670533b 100644
--- a/infra/pipetrace.h
+++ b/infra/pipetrace.h
@@ -31,7 +31,7 @@ namespace infra {
31 31
32 static void event(const transaction &t, const char *event, std::uint64_t time, const std::string &data) { 32 static void event(const transaction &t, const char *event, std::uint64_t time, const std::string &data) {
33 if (ptfile) 33 if (ptfile)
34 *ptfile << fmt::format("@{} {} {} {}\n", time, t.record, event, data); 34 *ptfile << fmt::format("@{} {} {} {}\n", time, t.record, event, data) << std::flush;
35 } 35 }
36 }; 36 };
37} 37}