perf: 升级lego到4.30.1版本

This commit is contained in:
xiaojunnuo
2025-12-29 16:44:00 +08:00
parent 024b2b04a4
commit 136e8dd7c5
3 changed files with 18 additions and 3 deletions

View File

@@ -1 +1 @@
LEGO_VERSION=4.22.2
LEGO_VERSION=4.30.1

View File

@@ -49,7 +49,7 @@ export class AutoZPrint {
}
setInterval(() => {
const mu = process.memoryUsage();
logger.info(`rss:${format(mu.rss)},heapUsed: ${format(mu.heapUsed)},heapTotal: ${format(mu.heapTotal)},external: ${format(mu.external)}`);
logger.info(`rss:${format(mu.rss)},heapUsed: ${format(mu.heapUsed)},heapTotal: ${format(mu.heapTotal)},external: ${format(mu.external)},arrayBuffers: ${format(mu.arrayBuffers)}`);
}, 20000);
}