Use console.log in place of console.warn for less warnings

These aren't react warnings, but they are distracting in the logs.
This commit is contained in:
Travis Ralston 2020-04-01 13:59:48 -06:00
parent c0ffa8b59a
commit ba0a9c8439
4 changed files with 8 additions and 8 deletions

View file

@ -165,7 +165,7 @@ export default class FromWidgetPostMessageApi {
const action = event.data.action;
const widgetId = event.data.widgetId;
if (action === 'content_loaded') {
console.warn('Widget reported content loaded for', widgetId);
console.log('Widget reported content loaded for', widgetId);
dis.dispatch({
action: 'widget_content_loaded',
widgetId: widgetId,