Fixed TimedThread bled %d ms logging to not spam the console

This commit is contained in:
pereslav
2021-06-03 01:21:27 +01:00
parent bffb7d1b28
commit e445c64321
@@ -46,7 +46,7 @@ namespace AzNetworking
}
else if (m_updateRate < updateTimeMs)
{
AZLOG_INFO("TimedThread bled %d ms", aznumeric_cast<int32_t>(updateTimeMs - m_updateRate));
AZLOG(NET_TimedThread, "TimedThread bled %d ms", aznumeric_cast<int32_t>(updateTimeMs - m_updateRate));
}
}
OnStop();