This commit is contained in:
Aya Morisawa 2018-07-27 17:43:04 +09:00
parent 43a7eb233c
commit d4d3316d18
1 changed files with 24 additions and 26 deletions

View File

@ -48,9 +48,9 @@ async function cpuUsage() {
try {
const data = await sysUtils.currentLoad();
return Math.floor(data.currentload);
}
catch(error) {
} catch (error) {
console.error(error);
throw error;
}
}
@ -59,8 +59,7 @@ async function freeMem() {
try {
const data = await sysUtils.mem();
return data.active;
}
catch(error) {
} catch (error) {
console.error(error);
}
}
@ -70,8 +69,7 @@ async function totalMem() {
try {
const data = await sysUtils.mem();
return data.total;
}
catch(error) {
} catch (error) {
console.error(error);
}
}