fix(basic.gblib): More loggin on BASIC keywords.

This commit is contained in:
Rodrigo Rodriguez 2021-03-08 19:14:12 -03:00
parent e016052309
commit d0e42f0ae1
2 changed files with 5 additions and 3 deletions

View file

@ -129,10 +129,11 @@ export class DialogKeywords {
/** /**
* Sends a file to a given mobile. * Sends a file to a given mobile.
* *
* @example SEND FILE TO "+199988887777", "image.jpg" * @example SEND FILE TO "+199988887777", "image.jpg", caption
* *
*/ */
public async sendFileTo(step, mobile, filename, caption) { public async sendFileTo(step, mobile, filename, caption) {
GBLog.info(`BASIC: SEND FILE TO '${mobile}', filename '${filename}'.`);
return await this.internalSendFile(step, mobile, filename, caption); return await this.internalSendFile(step, mobile, filename, caption);
} }
@ -244,11 +245,11 @@ export class DialogKeywords {
*/ */
private async internalSendFile(step, mobile, filename, caption) { private async internalSendFile(step, mobile, filename, caption) {
if (filename.indexOf('.md') > -1) { if (filename.indexOf('.md') > -1) {
GBLog.info(`BASIC: Sending the contents of ${filename} markdown to mobile.`); GBLog.info(`BASIC: Sending the contents of ${filename} markdown to mobile ${mobile}.`);
const md = await this.min.kbService.getAnswerTextByMediaName(this.min.instance.instanceId, filename); const md = await this.min.kbService.getAnswerTextByMediaName(this.min.instance.instanceId, filename);
await this.min.conversationalService.sendMarkdownToMobile(this.min, step, mobile, md); await this.min.conversationalService.sendMarkdownToMobile(this.min, step, mobile, md);
} else { } else {
GBLog.info(`BASIC: Sending the file ${filename} to mobile.`); GBLog.info(`BASIC: Sending the file ${filename} to mobile ${mobile}.`);
const url = urlJoin( const url = urlJoin(
GBServer.globals.publicAddress, GBServer.globals.publicAddress,
'kb', 'kb',

View file

@ -161,6 +161,7 @@ export class SystemKeywords {
* *
*/ */
public async sendSmsTo(mobile, message) { public async sendSmsTo(mobile, message) {
GBLog.info(`BASIC: SEND SMS TO '${mobile}', message '${message}'.`);
await this.min.conversationalService.sendSms(this.min, mobile, message); await this.min.conversationalService.sendSms(this.min, mobile, message);
} }