Merge pull request #12127 from SamGondelman/freeze

Comment out TabletAddressDialog logging of long messages
This commit is contained in:
Seth Alves 2018-01-10 18:07:18 -08:00 committed by GitHub
commit 363b9bfe11
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,7 +62,8 @@ StackView {
var callback = rpcCalls[message.id];
if (!callback) {
console.log('No callback for message fromScript', JSON.stringify(message));
// FIXME: We often recieve very long messages here, the logging of which is drastically slowing down the main thread
//console.log('No callback for message fromScript', JSON.stringify(message));
return;
}
delete rpcCalls[message.id];