Skip to content

Commit da5a439

Browse files
committed
Removed debug logging
1 parent 6d5d2a1 commit da5a439

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

lib/firestack.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,6 @@ export class Firestack {
168168
}
169169
const sub = nativeModule.addListener(name, cb);
170170
this.eventHandlers[name].push(sub);
171-
console.log('added eventHandlers for', name, nativeModule);
172171
return sub;
173172
}
174173

lib/modules/storage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export class Storage extends Base {
2929
uploadFile(name, filepath, metadata={}, cb) {
3030
let callback = cb;
3131
if (!callback || typeof callback !== 'function') {
32-
callback = (evt) => console.log('default callback', evt);
32+
callback = (evt) => {}
3333
}
3434

3535
const listeners = [];

0 commit comments

Comments
 (0)