Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 1 year ago.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
我终于找到了高CPU负载的原因。
就像Charlieface建议的那样,Logger中有一些异步功能,这些功能尚未正确等待,并且在抛出异常时会导致线程中这种异常的CPU负载。
I've finally found the cause of High CPU Load.
Like suggested by Charlieface, there was some async function in the Logger that was not waited correctly and when throwing exceptions is causing this abnormal CPU load in the thread.