Merge pull request #361 from ente-io/remove-token-key-logging

remove token and key logging
This commit is contained in:
Abhinav Kumar 2022-02-05 20:44:59 +05:30 committed by GitHub
commit ad73056ec7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -263,10 +263,7 @@ export const getPublicCollection = async (
await savePublicCollection(collection); await savePublicCollection(collection);
return collection; return collection;
} catch (e) { } catch (e) {
logError(e, 'failed to get public collection', { logError(e, 'failed to get public collection');
collectionKey,
token,
});
throw e; throw e;
} }
}; };