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:
parent
c0ffa8b59a
commit
ba0a9c8439
4 changed files with 8 additions and 8 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue