Skip to content

Commit

Permalink
refactor: 🔊 Update debug logs
Browse files Browse the repository at this point in the history
  • Loading branch information
SkepticMystic committed Aug 13, 2021
1 parent 579bd14 commit 932b258
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default class BreadcrumbsPlugin extends Plugin {

async refreshIndex() {
this.currGraphs = await this.initGraphs();
debug(this.settings, this.currGraphs);
debug(this.settings, { hierGs: this.currGraphs });
const activeView = this.getActiveMatrixView();
if (activeView) {
await activeView.draw();
Expand Down Expand Up @@ -393,7 +393,7 @@ export default class BreadcrumbsPlugin extends Plugin {
.filter((trail) => trail.length > 0)
.sort((a, b) => a.length - b.length);

debug(this.settings, sortedTrails);
debug(this.settings, { sortedTrails });
return sortedTrails;
}

Expand Down

0 comments on commit 932b258

Please sign in to comment.