* Fix freeze/crash when 1:1 calling Don't log call feed objects because they reference the client and it causes the client to get logged too. * Log purpose toopull/21833/head
parent
e485907443
commit
4d6643c7b8
|
@ -93,7 +93,10 @@ export default class AudioFeed extends React.Component<IProps, IState> {
|
|||
// load() explicitly, it shouldn't be a problem. - Dave
|
||||
await element.load();
|
||||
} catch (e) {
|
||||
logger.info("Failed to play media element with feed", this.props.feed, e);
|
||||
logger.info(
|
||||
`Failed to play media element with feed for userId ` +
|
||||
`${this.props.feed.userId} with purpose ${this.props.feed.purpose}`, e,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -138,7 +138,10 @@ export default class VideoFeed extends React.PureComponent<IProps, IState> {
|
|||
// load() explicitly, it shouldn't be a problem. - Dave
|
||||
await element.play();
|
||||
} catch (e) {
|
||||
logger.info("Failed to play media element with feed", this.props.feed, e);
|
||||
logger.info(
|
||||
`Failed to play media element with feed for userId ` +
|
||||
`${this.props.feed.userId} with purpose ${this.props.feed.purpose}`, e,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue