Update memory command text

This commit is contained in:
Hri7566 2023-12-01 23:00:35 -05:00
parent 32ae020f95
commit 556a1e4ad8
1 changed files with 2 additions and 2 deletions

View File

@ -9,9 +9,9 @@ export const memory = new Command(
(msg, agent) => { (msg, agent) => {
return `${(process.memoryUsage().heapUsed / 1000 / 1000).toFixed( return `${(process.memoryUsage().heapUsed / 1000 / 1000).toFixed(
2 2
)} MB / ${(process.memoryUsage().heapTotal / 1000 / 1000).toFixed( )} MB used / ${(process.memoryUsage().heapTotal / 1000 / 1000).toFixed(
2 2
)} MB`; )} MB total`;
}, },
false false
); );