diff --git a/lib/runtime.js b/lib/runtime.js index 7c7fac5..692014a 100644 --- a/lib/runtime.js +++ b/lib/runtime.js @@ -19,12 +19,9 @@ process.on('message', async message => { const interval = service.autotestInterval; const needsCheck = timePassed >= interval; - console.log(`service ${service.id}`, lastChecked, service.autotestEnabled, timePassed, interval, needsCheck); - if (service.autotestEnabled && needsCheck) { ids.push(service.id); promises.push(testEndpoints(service.autotest)); - console.log(`testing ${service.id}`); } }