mirror of
				https://github.com/vector-im/element-web.git
				synced 2025-11-04 02:02:14 +01:00 
			
		
		
		
	Merge pull request #4330 from matrix-org/travis/react-warnings/4-false-positives
Use console.log in place of console.warn for less warnings
This commit is contained in:
		
						commit
						05b58dc81d
					
				@ -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,
 | 
			
		||||
 | 
			
		||||
@ -92,7 +92,7 @@ export default class WidgetMessaging {
 | 
			
		||||
     * @return {Promise} To be resolved with screenshot data when it has been generated
 | 
			
		||||
     */
 | 
			
		||||
    getScreenshot() {
 | 
			
		||||
        console.warn('Requesting screenshot for', this.widgetId);
 | 
			
		||||
        console.log('Requesting screenshot for', this.widgetId);
 | 
			
		||||
        return this.messageToWidget({
 | 
			
		||||
                api: OUTBOUND_API_NAME,
 | 
			
		||||
                action: "screenshot",
 | 
			
		||||
@ -106,12 +106,12 @@ export default class WidgetMessaging {
 | 
			
		||||
     * @return {Promise} To be resolved with an array of requested widget capabilities
 | 
			
		||||
     */
 | 
			
		||||
    getCapabilities() {
 | 
			
		||||
        console.warn('Requesting capabilities for', this.widgetId);
 | 
			
		||||
        console.log('Requesting capabilities for', this.widgetId);
 | 
			
		||||
        return this.messageToWidget({
 | 
			
		||||
                api: OUTBOUND_API_NAME,
 | 
			
		||||
                action: "capabilities",
 | 
			
		||||
            }).then((response) => {
 | 
			
		||||
                console.warn('Got capabilities for', this.widgetId, response.capabilities);
 | 
			
		||||
                console.log('Got capabilities for', this.widgetId, response.capabilities);
 | 
			
		||||
                return response.capabilities;
 | 
			
		||||
            });
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -319,7 +319,7 @@ export default class AppTile extends React.Component {
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    _onSnapshotClick() {
 | 
			
		||||
        console.warn("Requesting widget snapshot");
 | 
			
		||||
        console.log("Requesting widget snapshot");
 | 
			
		||||
        ActiveWidgetStore.getWidgetMessaging(this.props.app.id).getScreenshot()
 | 
			
		||||
            .catch((err) => {
 | 
			
		||||
                console.error("Failed to get screenshot", err);
 | 
			
		||||
@ -423,7 +423,7 @@ export default class AppTile extends React.Component {
 | 
			
		||||
                }, this.props.whitelistCapabilities);
 | 
			
		||||
 | 
			
		||||
                if (requestedWhitelistCapabilies.length > 0 ) {
 | 
			
		||||
                    console.warn(`Widget ${this.props.app.id} allowing requested, whitelisted properties: ` +
 | 
			
		||||
                    console.log(`Widget ${this.props.app.id} allowing requested, whitelisted properties: ` +
 | 
			
		||||
                        requestedWhitelistCapabilies,
 | 
			
		||||
                    );
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
@ -84,11 +84,11 @@ export default class Stickerpicker extends React.Component {
 | 
			
		||||
 | 
			
		||||
    async _removeStickerpickerWidgets() {
 | 
			
		||||
        const scalarClient = await this._acquireScalarClient();
 | 
			
		||||
        console.warn('Removing Stickerpicker widgets');
 | 
			
		||||
        console.log('Removing Stickerpicker widgets');
 | 
			
		||||
        if (this.state.widgetId) {
 | 
			
		||||
            if (scalarClient) {
 | 
			
		||||
                scalarClient.disableWidgetAssets(widgetType, this.state.widgetId).then(() => {
 | 
			
		||||
                    console.warn('Assets disabled');
 | 
			
		||||
                    console.log('Assets disabled');
 | 
			
		||||
                }).catch((err) => {
 | 
			
		||||
                    console.error('Failed to disable assets');
 | 
			
		||||
                });
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user