@@ -584,7 +584,7 @@ describe("SlidingSync", () => {
584584 let txnId ;
585585 httpBackend . when ( "POST" , syncUrl ) . check ( function ( req ) {
586586 const body = req . data ;
587- logger . log ( "txn got ", body ) ;
587+ logger . debug ( " got ", body ) ;
588588 expect ( body . room_subscriptions ) . toBeTruthy ( ) ;
589589 expect ( body . room_subscriptions [ roomId ] ) . toEqual ( roomSubInfo ) ;
590590 expect ( body . txn_id ) . toBeTruthy ( ) ;
@@ -616,7 +616,7 @@ describe("SlidingSync", () => {
616616 let txnId ;
617617 httpBackend . when ( "POST" , syncUrl ) . check ( function ( req ) {
618618 const body = req . data ;
619- logger . log ( "txn got ", body ) ;
619+ logger . debug ( " got ", body ) ;
620620 expect ( body . room_subscriptions ) . toBeFalsy ( ) ;
621621 expect ( body . lists [ 0 ] ) . toEqual ( newList ) ;
622622 expect ( body . txn_id ) . toBeTruthy ( ) ;
@@ -638,7 +638,7 @@ describe("SlidingSync", () => {
638638 let txnId ;
639639 httpBackend . when ( "POST" , syncUrl ) . check ( function ( req ) {
640640 const body = req . data ;
641- logger . log ( "txn got ", body ) ;
641+ logger . debug ( " got ", body ) ;
642642 expect ( body . room_subscriptions ) . toBeFalsy ( ) ;
643643 expect ( body . lists [ 0 ] ) . toEqual ( {
644644 ranges : [ [ 20 , 40 ] ] ,
@@ -664,7 +664,7 @@ describe("SlidingSync", () => {
664664 let txnId ;
665665 httpBackend . when ( "POST" , syncUrl ) . check ( function ( req ) {
666666 const body = req . data ;
667- logger . log ( "txn got ", body ) ;
667+ logger . debug ( " got ", body ) ;
668668 expect ( body . room_subscriptions ) . toBeTruthy ( ) ;
669669 expect ( body . room_subscriptions [ roomId ] ) . toEqual ( {
670670 timeline_limit : 99 ,
@@ -759,7 +759,7 @@ describe("SlidingSync", () => {
759759 let txnId ;
760760 httpBackend . when ( "POST" , syncUrl ) . check ( function ( req ) {
761761 const body = req . data ;
762- logger . log ( "txn got ", body ) ;
762+ logger . debug ( " got ", body ) ;
763763 expect ( body . room_subscriptions ) . toBeFalsy ( ) ;
764764 expect ( body . lists [ 0 ] ) . toEqual ( {
765765 ranges : [ [ 20 , 40 ] ] ,
0 commit comments