changelog release 1.1.0

This commit is contained in:
Davidson Gomes 2023-06-21 11:18:11 -03:00
parent 509442a2f3
commit 8e65dd0546

View File

@ -234,14 +234,14 @@ export class WAStartupService {
baseURL = this.localWebhook.url; baseURL = this.localWebhook.url;
} }
// this.logger.log({ this.logger.log({
// local: WAStartupService.name + '.sendDataWebhook-local', local: WAStartupService.name + '.sendDataWebhook-local',
// url: baseURL, url: baseURL,
// event, event,
// instance: this.instance.name, instance: this.instance.name,
// data, data,
// destination: this.localWebhook.url, destination: this.localWebhook.url,
// }); });
try { try {
if (this.localWebhook.enabled && isURL(this.localWebhook.url)) { if (this.localWebhook.enabled && isURL(this.localWebhook.url)) {
@ -289,14 +289,14 @@ export class WAStartupService {
localUrl = this.localWebhook.url; localUrl = this.localWebhook.url;
} }
// this.logger.log({ this.logger.log({
// local: WAStartupService.name + '.sendDataWebhook-global', local: WAStartupService.name + '.sendDataWebhook-global',
// url: globalURL, url: globalURL,
// event, event,
// instance: this.instance.name, instance: this.instance.name,
// data, data,
// destination: localUrl, destination: localUrl,
// }); });
try { try {
if (globalWebhook && globalWebhook?.ENABLED && isURL(globalURL)) { if (globalWebhook && globalWebhook?.ENABLED && isURL(globalURL)) {