@@ -64,7 +64,7 @@ function applyHTTPSOnyxUpdates(request: Request, response: Response) {
6464 } )
6565 . then ( ( ) => {
6666 Performance . markEnd ( CONST . TIMING . APPLY_HTTPS_UPDATES ) ;
67- console . debug ( '[OnyxUpdateManager] Done applying HTTPS update' ) ;
67+ Log . info ( '[OnyxUpdateManager] Done applying HTTPS update' ) ;
6868 return Promise . resolve ( response ) ;
6969 } ) ;
7070}
@@ -73,14 +73,14 @@ function applyPusherOnyxUpdates(updates: OnyxUpdateEvent[]) {
7373 Performance . markStart ( CONST . TIMING . APPLY_PUSHER_UPDATES ) ;
7474
7575 pusherEventsPromise = pusherEventsPromise . then ( ( ) => {
76- console . debug ( '[OnyxUpdateManager] Applying pusher update' ) ;
76+ Log . info ( '[OnyxUpdateManager] Applying pusher update' ) ;
7777 } ) ;
7878
7979 pusherEventsPromise = updates
8080 . reduce ( ( promise , update ) => promise . then ( ( ) => PusherUtils . triggerMultiEventHandler ( update . eventType , update . data ) ) , pusherEventsPromise )
8181 . then ( ( ) => {
8282 Performance . markEnd ( CONST . TIMING . APPLY_PUSHER_UPDATES ) ;
83- console . debug ( '[OnyxUpdateManager] Done applying Pusher update' ) ;
83+ Log . info ( '[OnyxUpdateManager] Done applying Pusher update' ) ;
8484 } ) ;
8585
8686 return pusherEventsPromise ;
@@ -90,14 +90,14 @@ function applyAirshipOnyxUpdates(updates: OnyxUpdateEvent[]) {
9090 Performance . markStart ( CONST . TIMING . APPLY_AIRSHIP_UPDATES ) ;
9191
9292 airshipEventsPromise = airshipEventsPromise . then ( ( ) => {
93- console . debug ( '[OnyxUpdateManager] Applying Airship updates' ) ;
93+ Log . info ( '[OnyxUpdateManager] Applying Airship updates' ) ;
9494 } ) ;
9595
9696 airshipEventsPromise = updates
9797 . reduce ( ( promise , update ) => promise . then ( ( ) => Onyx . update ( update . data ) ) , airshipEventsPromise )
9898 . then ( ( ) => {
9999 Performance . markEnd ( CONST . TIMING . APPLY_AIRSHIP_UPDATES ) ;
100- console . debug ( '[OnyxUpdateManager] Done applying Airship updates' ) ;
100+ Log . info ( '[OnyxUpdateManager] Done applying Airship updates' ) ;
101101 } ) ;
102102
103103 return airshipEventsPromise ;
0 commit comments