From 33ebfa82f0033cbe83a3acefa62789f4f40226d0 Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Wed, 22 Sep 2021 21:08:01 +0200 Subject: [PATCH] Remove spammy TRACE --- src/TLuaEngine.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/TLuaEngine.cpp b/src/TLuaEngine.cpp index b967bdf..6e91cea 100644 --- a/src/TLuaEngine.cpp +++ b/src/TLuaEngine.cpp @@ -662,7 +662,6 @@ void TPluginMonitor::operator()() { while (!mShutdown) { std::this_thread::sleep_for(std::chrono::seconds(3)); for (const auto& Pair : mFileTimes) { - beammp_trace("checking for hot-reloadable files"); auto CurrentTime = fs::last_write_time(Pair.first); if (CurrentTime != Pair.second) { mFileTimes[Pair.first] = CurrentTime;