Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8974e8b commit 9b440dcCopy full SHA for 9b440dc
src/memoryLogger.ts
@@ -130,10 +130,6 @@ export class MemoryLogger {
130
const systemMemoryInfo = {
131
totalMem: `${(os.totalmem() / 1024 / 1024 / 1024).toFixed(2)}GB`,
132
freeMem: `${(os.freemem() / 1024 / 1024 / 1024).toFixed(2)}GB`,
133
- loadAvg: os
134
- .loadavg()
135
- .map((load) => load.toFixed(2))
136
- .join(", "),
137
}
138
139
const memoryLog = `[MEMORY:${context}] Node: ${JSON.stringify(nodeMemoryInfo)} | System: ${JSON.stringify(systemMemoryInfo)}`
0 commit comments