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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user