From bec4c25a4f272bb7096190c5d965dfd61bd2338d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=8D=83=E9=A3=8E?= Date: Fri, 12 Nov 2021 21:48:40 +0800 Subject: [PATCH] Refactor: remove unused stdout --- src/index.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.ts b/src/index.ts index 13993bec..57df2ead 100644 --- a/src/index.ts +++ b/src/index.ts @@ -241,10 +241,9 @@ export default class FcBaseComponent extends BaseComponent { } // 删除 methodName const fcLocalInvokeArgs: string = args ? args.replace(methodName, '').replace(/(^\s*)|(\s*$)/g, '') : ''; - this.logger.debug(`Args of fc-info is: ${fcLocalInvokeArgs}`); + this.logger.debug(`Args of local method is: ${fcLocalInvokeArgs}`); inputs.argsObj.shift(); - console.log(inputs.argsObj); const localRes: any = await this.componentMethodCaller(inputs, 'devsapp/fc-local-invoke', methodName, props, fcLocalInvokeArgs); tips.showNextTip(args, tips.showLocalNextTips);