remove debug print

This commit is contained in:
Lion Kortlepel 2022-07-20 16:08:56 +02:00
parent 8b57f6e35a
commit 054016a099
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B

View File

@ -59,7 +59,6 @@ void TLuaEngine::operator()() {
RegisterThread("ResultCheckThread"); RegisterThread("ResultCheckThread");
while (!Application::IsShuttingDown()) { while (!Application::IsShuttingDown()) {
std::unique_lock Lock(mResultsToCheckMutex); std::unique_lock Lock(mResultsToCheckMutex);
beammp_tracef("Results to check: {}", mResultsToCheck.size());
if (!mResultsToCheck.empty()) { if (!mResultsToCheck.empty()) {
mResultsToCheck.remove_if([](const std::shared_ptr<TLuaResult>& Ptr) -> bool { mResultsToCheck.remove_if([](const std::shared_ptr<TLuaResult>& Ptr) -> bool {
if (Ptr->Ready) { if (Ptr->Ready) {