Remove spammy TRACE

This commit is contained in:
Lion Kortlepel 2021-09-22 21:08:01 +02:00
parent 9d0caf2c7d
commit 33ebfa82f0
No known key found for this signature in database
GPG Key ID: 4322FF2B4C71259B

View File

@ -662,7 +662,6 @@ void TPluginMonitor::operator()() {
while (!mShutdown) { while (!mShutdown) {
std::this_thread::sleep_for(std::chrono::seconds(3)); std::this_thread::sleep_for(std::chrono::seconds(3));
for (const auto& Pair : mFileTimes) { for (const auto& Pair : mFileTimes) {
beammp_trace("checking for hot-reloadable files");
auto CurrentTime = fs::last_write_time(Pair.first); auto CurrentTime = fs::last_write_time(Pair.first);
if (CurrentTime != Pair.second) { if (CurrentTime != Pair.second) {
mFileTimes[Pair.first] = CurrentTime; mFileTimes[Pair.first] = CurrentTime;