diff --git a/src/modules/server/index.ts b/src/modules/server/index.ts index 6bf3285..7c16392 100644 --- a/src/modules/server/index.ts +++ b/src/modules/server/index.ts @@ -38,8 +38,6 @@ export default class extends Module { @autobind private check() { const average = (arr) => arr.reduce((a, b) => a + b) / arr.length; - - console.log('statsLogs', this.statsLogs) const cpuPercentages = this.statsLogs.map(s => s && (s.cpu_usage || s.cpu) * 100 || 0); const cpuPercentage = average(cpuPercentages); if (cpuPercentage >= 70) {