Skip to content

Commit

Permalink
perf(storage): silent get
Browse files Browse the repository at this point in the history
  • Loading branch information
AliMD committed Sep 8, 2022
1 parent 2aa648c commit c2cbd88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/storage/src/storage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ export class AlwatrStorage<DocumentType extends DocumentObject> {
* ```
*/
get(documentId: string, fastInstance?: boolean): DocumentType | null {
this._logger.logMethodArgs('get', documentId);
// this._logger.logMethodArgs('get', documentId);
if (this._readyState !== true) throw new Error('storage_not_ready');

const documentObject = this._storage[documentId];
Expand Down

0 comments on commit c2cbd88

Please sign in to comment.