From 4fff563dad60213c64dfc1c9d213f13a9a42a5ef Mon Sep 17 00:00:00 2001 From: Andrej Babic Date: Mon, 6 Apr 2020 13:19:39 +0200 Subject: [PATCH] Rename "writing" to "saving" from ZmqRecvModule The module should not have a notion of writing - but --- core-writer/src/module/ZmqRecvModule.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core-writer/src/module/ZmqRecvModule.cpp b/core-writer/src/module/ZmqRecvModule.cpp index f84001a..fe4f1e8 100644 --- a/core-writer/src/module/ZmqRecvModule.cpp +++ b/core-writer/src/module/ZmqRecvModule.cpp @@ -77,7 +77,7 @@ void ZmqRecvModule::start_saving() using namespace chrono; cout << "[" << system_clock::now() << "]"; cout << "[ZmqRecvModule::start_saving]"; - cout << " Enable writing." << endl; + cout << " Enable saving." << endl; #endif is_saving_ = true; @@ -90,7 +90,7 @@ void ZmqRecvModule::stop_saving() using namespace chrono; cout << "[" << system_clock::now() << "]"; cout << "[ZmqRecvModule::stop_saving]"; - cout << " Enable writing." << endl; + cout << " Disable saving." << endl; #endif is_saving_ = false;