reverse this since it makes better reading

This commit is contained in:
Girish Ramakrishnan
2020-11-05 16:08:57 -08:00
parent 8f78a9dcde
commit a63c2cfdf2

View File

@@ -56,8 +56,8 @@ function dumpMemoryInfo() {
const mu = process.memoryUsage();
const hs = v8.getHeapStatistics();
debug(`v8 heap : used ${hs.used_heap_size} total: ${hs.total_heap_size} max: ${hs.heap_size_limit}`);
debug(`process: rss: ${mu.rss} heapTotal: ${mu.heapTotal} heapUsed: ${mu.heapUsed} external: ${mu.external}`);
debug(`v8 heap : used ${hs.used_heap_size} total: ${hs.total_heap_size} max: ${hs.heap_size_limit}`);
}
initialize(function (error) {