Remove debug prints

This commit is contained in:
Donovan Preston 2018-12-17 16:42:03 -05:00
parent c71ef9ae84
commit cbc847b751
1 changed files with 0 additions and 2 deletions

View File

@ -74,7 +74,6 @@ export default function(state, emitter) {
}); });
emitter.on('delete', async ({ file, location }) => { emitter.on('delete', async ({ file, location }) => {
console.log('ondelete');
try { try {
metrics.deletedUpload({ metrics.deletedUpload({
size: file.size, size: file.size,
@ -87,7 +86,6 @@ export default function(state, emitter) {
state.storage.remove(file.id); state.storage.remove(file.id);
await file.del(); await file.del();
} catch (e) { } catch (e) {
console.log(e.stack);
state.raven.captureException(e); state.raven.captureException(e);
} }
render(); render();