reduce log spam

This commit is contained in:
Green Sky 2024-03-03 11:57:30 +01:00
parent 2b8cee6a29
commit 71be5c3c6e
No known key found for this signature in database
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}
}

View File

@ -91,7 +91,7 @@ void MessageFragmentStore::handleMessage(const Message3Handle& m) {
_potentially_dirty_contacts.emplace(m.registry()->ctx().get<Contact3>()); // always mark dirty here
if (m.any_of<Message::Components::ViewCurserBegin, Message::Components::ViewCurserEnd>()) {
// 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;
}