Browse Source

Disable Blob polyfill log

Ben Hsieh 8 years ago
parent
commit
43ecccc8a5
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      src/polyfill/Blob.js

+ 2
- 2
src/polyfill/Blob.js View File

11
 const log = new Log('Blob')
11
 const log = new Log('Blob')
12
 const blobCacheDir = fs.dirs.DocumentDir + '/RNFetchBlob-blobs/'
12
 const blobCacheDir = fs.dirs.DocumentDir + '/RNFetchBlob-blobs/'
13
 
13
 
14
-// log.disable()
15
-log.level(3)
14
+log.disable()
15
+// log.level(3)
16
 
16
 
17
 /**
17
 /**
18
  * A RNFetchBlob style Blob polyfill class, this is a Blob which compatible to
18
  * A RNFetchBlob style Blob polyfill class, this is a Blob which compatible to