From 71be5c3c6eba41cb4043edceb8159f66b92a14b1 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Sun, 3 Mar 2024 11:57:30 +0100 Subject: [PATCH] reduce log spam --- src/chat_gui4.cpp | 4 ++-- src/fragment_store/message_fragment_store.cpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/chat_gui4.cpp b/src/chat_gui4.cpp index e220c3d4..1fc847be 100644 --- a/src/chat_gui4.cpp +++ b/src/chat_gui4.cpp @@ -624,7 +624,7 @@ float ChatGui4::render(float time_delta) { std::cout << "CG: created view begin ts with " << old_begin_ts << "\n"; _rmm.throwEventConstruct(cg_view.begin); } else { - std::cout << "CG: updated view begin ts to " << old_begin_ts << "\n"; + //std::cout << "CG: updated view begin ts to " << old_begin_ts << "\n"; _rmm.throwEventUpdate(cg_view.begin); } } @@ -638,7 +638,7 @@ float ChatGui4::render(float time_delta) { std::cout << "CG: created view end ts with " << old_end_ts << "\n"; _rmm.throwEventConstruct(cg_view.end); } else { - std::cout << "CG: updated view end ts to " << old_end_ts << "\n"; + //std::cout << "CG: updated view end ts to " << old_end_ts << "\n"; _rmm.throwEventUpdate(cg_view.end); } } diff --git a/src/fragment_store/message_fragment_store.cpp b/src/fragment_store/message_fragment_store.cpp index 61fb968f..ade8203b 100644 --- a/src/fragment_store/message_fragment_store.cpp +++ b/src/fragment_store/message_fragment_store.cpp @@ -91,7 +91,7 @@ void MessageFragmentStore::handleMessage(const Message3Handle& m) { _potentially_dirty_contacts.emplace(m.registry()->ctx().get()); // always mark dirty here if (m.any_of()) { // not an actual message, but we probalby need to check and see if we need to load fragments - std::cout << "MFS: new or updated curser\n"; + //std::cout << "MFS: new or updated curser\n"; return; }