From 95f3c821a5bdbe977acebf04a6aa74d453c80490 Mon Sep 17 00:00:00 2001 From: Green Sky Date: Tue, 2 Sep 2025 12:50:52 +0200 Subject: [PATCH] remove imgui debug log --- src/solanaceae/crdtnotes_imgui/crdtnotes_imgui.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/solanaceae/crdtnotes_imgui/crdtnotes_imgui.cpp b/src/solanaceae/crdtnotes_imgui/crdtnotes_imgui.cpp index cd2d1fc..ffb8484 100644 --- a/src/solanaceae/crdtnotes_imgui/crdtnotes_imgui.cpp +++ b/src/solanaceae/crdtnotes_imgui/crdtnotes_imgui.cpp @@ -9,7 +9,6 @@ #include #include -#include #include namespace detail { @@ -167,11 +166,11 @@ bool CRDTNotesImGui::renderDoc(const CRDTNotes::DocID& doc_id) { // TODO: check _held_locks.emplace(_notes.writeLockAquire(doc_id).value()); self_held = true; - std::cout << "!!!! imgui lock aquired\n"; + //std::cout << "!!!! imgui lock aquired\n"; } else if (!foreign_held && self_held && !(ImGui::IsItemActive() || ImGui::IsItemEdited())) { // release lock _held_locks.erase(lock_it); - std::cout << "!!!! imgui lock released\n"; + //std::cout << "!!!! imgui lock released\n"; } if (self_held && ImGui::IsItemEdited()) {