Skip to content
This repository was archived by the owner on Feb 27, 2022. It is now read-only.

Commit e9cca7c

Browse files
author
Elad Gil
committed
removed console.logs
1 parent a7cf5c2 commit e9cca7c

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,13 @@ RNBackgroundDownloadEmitter.addListener('downloadFailed', event => {
2525
});
2626

2727
RNBackgroundDownloadEmitter.addListener('downloadBegin', event => {
28-
console.log('GOT downloadBegin', event);
2928
let task = tasksMap.get(event.id);
3029
task && task._onBegin(event.expctedBytes);
3130
});
3231

3332
export function checkForExistingDownloads() {
3433
return RNBackgroundDownload.checkForExistingDownloads()
3534
.then(foundTasks => {
36-
console.log('Fond lost downloads!!: ', foundTasks);
3735
return foundTasks.map(taskInfo => {
3836
let task = new DownloadTask(taskInfo);
3937
if (taskInfo.state === RNBackgroundDownload.TaskRunning) {

0 commit comments

Comments
 (0)