Skip to content

Commit

Permalink
fix: prevent circular structure exception (#312)
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielRuf authored and juanpicado committed Jan 7, 2020
1 parent fb4e48a commit f565461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/local-storage/src/local-database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class LocalDatabase implements IPluginStorage<{}> {
this.locked = false;
this.data = this._fetchLocalPackages();

this.logger.trace({ config: JSON.stringify(this.config, null, 4) }, '[local-storage]: configuration: @{config}');
this.logger.trace({ config: this.config }, '[local-storage]: configuration: @{config}');

this._sync();
}
Expand Down

0 comments on commit f565461

Please sign in to comment.