Browse Source

remove redundant console.log every AppState change (#385)

atlanteh 7 years ago
parent
commit
93509a7a88
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      index.js

+ 0
- 1
index.js View File

@@ -51,7 +51,6 @@ const RNFetchBlob = NativeModules.RNFetchBlob
51 51
 // their .expire event
52 52
 if(Platform.OS === 'ios') {
53 53
   AppState.addEventListener('change', (e) => {
54
-    console.log('app state changed', e)
55 54
     if(e === 'active')
56 55
       RNFetchBlob.emitExpiredEvent(()=>{})
57 56
   })