From c769c598b82bf64d1f43e40a1d37c0b97730bcdb Mon Sep 17 00:00:00 2001 From: whyour Date: Sun, 3 Apr 2022 19:50:44 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4console?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- back/services/cron.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/back/services/cron.ts b/back/services/cron.ts index 19c799f2..e1f8f70f 100644 --- a/back/services/cron.ts +++ b/back/services/cron.ts @@ -412,9 +412,6 @@ export default class CronService { const tmpStr = command.startsWith('/') ? command.substring(1) : command; const index = tmpStr.indexOf('/') !== -1 ? tmpStr.indexOf('/') : 0; if (index) { - console.log( - `${tmpStr.substring(0, index)}_${command.substring(start, end)}`, - ); return `${tmpStr.substring(0, index)}_${command.substring(start, end)}`; } else { return command.substring(start, end);