File tree 2 files changed +3
-7
lines changed
packages/host/app/services
2 files changed +3
-7
lines changed Original file line number Diff line number Diff line change @@ -1465,12 +1465,12 @@ export default class MatrixService extends Service {
1465
1465
event . sender &&
1466
1466
event . content
1467
1467
) {
1468
- console . log ( 'Received realm event' , event ) ;
1468
+ realmEventsLogger . debug ( 'Received realm event' , event ) ;
1469
1469
if (
1470
1470
this . startedAtTs === - 1 ||
1471
1471
( event . origin_server_ts || 0 ) < this . startedAtTs
1472
1472
) {
1473
- console . log (
1473
+ realmEventsLogger . debug (
1474
1474
'Ignoring realm event because it occurred before the client started' ,
1475
1475
event ,
1476
1476
) ;
Original file line number Diff line number Diff line change @@ -238,10 +238,6 @@ export default class StoreService extends Service {
238
238
let subscriber = this . subscribers . get ( invalidation ) ;
239
239
if ( subscriber ) {
240
240
let liveCard = this . identityContext . get ( invalidation ) ;
241
- console . log ( 'handleInvalidations' , {
242
- 'event.clientRequestId' : event . clientRequestId ,
243
- event : event ,
244
- } ) ;
245
241
if ( liveCard ) {
246
242
// Do not reload if the event is a result of a request that we made. Otherwise we risk overwriting
247
243
// the inputs with past values. This can happen if the user makes edits in the time between the auto
@@ -253,7 +249,7 @@ export default class StoreService extends Service {
253
249
this . reload . perform ( liveCard ) ;
254
250
} else {
255
251
if ( this . cardService . clientRequestIds . has ( event . clientRequestId ) ) {
256
- console . log (
252
+ console . debug (
257
253
'ignoring invalidation for card because clientRequestId is ours' ,
258
254
event ,
259
255
) ;
You can’t perform that action at this time.
0 commit comments