Silence another console.warn that should have been a log

pull/21833/head
Travis Ralston 2020-04-01 14:40:51 -06:00
parent 47e5cfecf2
commit f2c41a5da7
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ export default class FromWidgetPostMessageApi {
console.warn('Add FromWidgetPostMessageApi - Endpoint already registered');
return;
} else {
console.warn(`Adding fromWidget messaging endpoint for ${widgetId}`, endpoint);
console.log(`Adding fromWidget messaging endpoint for ${widgetId}`, endpoint);
this.widgetMessagingEndpoints.push(endpoint);
}
}