From fbd50f50bcd4e8ab4eb982d7da505faa5fcea6e6 Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Thu, 28 Jan 2021 08:45:29 -0300 Subject: [PATCH] fix(basic.gblib): More code instrumentation. --- packages/basic.gblib/services/SystemKeywords.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/basic.gblib/services/SystemKeywords.ts b/packages/basic.gblib/services/SystemKeywords.ts index f345ff41..1ca3b38f 100644 --- a/packages/basic.gblib/services/SystemKeywords.ts +++ b/packages/basic.gblib/services/SystemKeywords.ts @@ -441,7 +441,7 @@ export class SystemKeywords { * */ public async copyFile(src, dest) { - + GBLog.info(`BASIC: COPY '${src}' to '${dest}'`); let [baseUrl, client] = await this.internalGetDriveClient(); const botId = this.min.instance.botId; @@ -509,7 +509,7 @@ export class SystemKeywords { * */ public async convert(src, dest) { - + GBLog.info(`BASIC: CONVERT '${src}' to '${dest}'`); let [baseUrl, client] = await this.internalGetDriveClient(); const botId = this.min.instance.botId;