Nekobaex

Results 3 comments of Nekobaex

我想到的一个解决方法, 直接把所有与 logger 相关的逻辑都删掉, 去掉消息自动更新, 所有信息通过循环每隔一段时间手动请求更新一次

```javascript class LRUCache{ constructor(cacheVolume){ this.cache = [] this.cacheLen = cacheVolume this.cacheIndex = 0 } put(key, value){ if (this.cacheIndex == this.cacheLen){ this.cache.shift() }else{ this.cacheIndex ++ } this.cache.push({ [key]: value }) }...

I have switched the channel of flutter to beta (3.16.0-0.4.pre) and connected to windows, but still have this issue. ![image](https://github.com/flutter/devtools/assets/89440464/6bcef1be-d62b-4cf7-ad90-c1c214990717)