remove console logs

This commit is contained in:
Abhinav 2022-02-05 14:03:34 +05:30
parent 21aab14380
commit c9129ce11c
2 changed files with 0 additions and 2 deletions

View file

@ -165,7 +165,6 @@ class UploadManager {
metadata: { ...metadata }, metadata: { ...metadata },
} }
); );
console.log(this.metadataAndFileTypeInfoMap.keys());
UIService.increaseFileUploaded(); UIService.increaseFileUploaded();
} }
} catch (e) { } catch (e) {

View file

@ -109,7 +109,6 @@ class UploadService {
} }
getFileMetadataAndFileTypeInfo(key: string) { getFileMetadataAndFileTypeInfo(key: string) {
console.log(this.metadataAndFileTypeInfoMap, key);
return this.metadataAndFileTypeInfoMap.get(key); return this.metadataAndFileTypeInfoMap.get(key);
} }