Skip to content

Commit

Permalink
Comments out logs
Browse files Browse the repository at this point in the history
  • Loading branch information
akaalias committed Feb 7, 2021
1 parent a95f13c commit 729333a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export default class JourneyPlugin extends Plugin {
const startBasename = start;
const endBasename = end;

console.log("Searching for journey between " + startBasename + " and " + endBasename);
// console.log("Searching for journey between " + startBasename + " and " + endBasename);

let resolvedLinks = this.app.metadataCache.resolvedLinks;

Expand Down Expand Up @@ -111,7 +111,7 @@ export default class JourneyPlugin extends Plugin {
}
}
} else {
console.log("Skipping edge creation for " + nodeBasename + " with too many (" + outboundLinkCounter + "/" + this.settings.MOCMaxLinks + ") links");
// console.log("Skipping edge creation for " + nodeBasename + " with too many (" + outboundLinkCounter + "/" + this.settings.MOCMaxLinks + ") links");
}

if(this.settings.useTags) {
Expand Down Expand Up @@ -223,7 +223,7 @@ class SearchModal extends Modal {
private setupFileList() {
let resolvedLinks = this.app.metadataCache.resolvedLinks;
this.filePathList = [];
console.log(this.plugin.settings.skipFoldersList());
// console.log(this.plugin.settings.skipFoldersList());

for (let key in resolvedLinks) {
let filePath = key;
Expand Down

0 comments on commit 729333a

Please sign in to comment.