fix(whatsapp.gblib): Improved error message.

This commit is contained in:
Rodrigo Rodriguez 2020-05-28 09:40:53 -03:00
parent e87031255e
commit 1ec645f148

View file

@ -181,7 +181,7 @@ export class GBMinService {
await (GBServer.globals.minBoot as any).whatsAppDirectLine.received(req, res); await (GBServer.globals.minBoot as any).whatsAppDirectLine.received(req, res);
} }
} catch (error) { } catch (error) {
GBLog.error(`Error on Whatsapp callback: ${error.message}`); GBLog.error(`Error on Whatsapp callback: ${error}`);
} }
}); });