diff --git a/src/Common.cpp b/src/Common.cpp index 375b399..1fe02d6 100644 --- a/src/Common.cpp +++ b/src/Common.cpp @@ -159,7 +159,7 @@ std::string ThreadName(bool DebugModeOverride) { } void RegisterThread(const std::string& str) { - beammp_info(str + " is " + std::to_string(gettid())); + beammp_trace(str + " is " + std::to_string(gettid())); auto Lock = std::unique_lock(ThreadNameMapMutex); threadNameMap[std::this_thread::get_id()] = str; } diff --git a/src/TLuaEngine.cpp b/src/TLuaEngine.cpp index d6c8c81..6bfadca 100644 --- a/src/TLuaEngine.cpp +++ b/src/TLuaEngine.cpp @@ -93,7 +93,7 @@ void TLuaEngine::operator()() { < std::chrono::milliseconds(10)) { std::this_thread::sleep_for(Diff); } else { - beammp_debug("Event loop cannot keep up!"); + beammp_trace("Event loop cannot keep up!"); } Before = std::chrono::high_resolution_clock::now(); }