From 1c0d6973a6134365b454b6f9a1bb766c7555868a Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Wed, 3 Jun 2020 21:37:10 +0200 Subject: [PATCH] Name statistics correctly --- sf-writer/src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sf-writer/src/main.cpp b/sf-writer/src/main.cpp index 1c8c233..1e2de6d 100644 --- a/sf-writer/src/main.cpp +++ b/sf-writer/src/main.cpp @@ -49,9 +49,9 @@ void read_buffer( uint64_t compose_us_duration = duration_cast( end_time-start_time).count(); - cout << "sf_replay:avg_read_us "; + cout << "sf_writer:avg_read_us "; cout << read_us_duration / BUFFER_BLOCK_SIZE << endl; - cout << "sf_replay:avg_assemble_us "; + cout << "sf_writer:avg_assemble_us "; cout << compose_us_duration / BUFFER_BLOCK_SIZE << endl; }