Skip to content

Commit 6550fef

Browse files
author
Rubaiyat Khondaker
committed
Changed many console.log to console.info
1 parent cf87d17 commit 6550fef

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ export default class MyPlugin extends Plugin {
154154

155155
async scanVault() {
156156
new Notice('Scanning vault, check console for details...');
157-
console.log("Checking connection to Anki...")
157+
console.info("Checking connection to Anki...")
158158
try {
159159
const test = await AnkiConnect.invoke('modelNames')
160160
}

src/files-manager.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export class FileManager {
8383
let file = this.ownFiles[i]
8484
if (!(this.file_hashes.hasOwnProperty(file.path) && file.getHash() === this.file_hashes[file.path])) {
8585
//Indicates it's changed or new
86-
console.log("Scanning ", file.path, "as it's changed or new.")
86+
console.info("Scanning ", file.path, "as it's changed or new.")
8787
file.scanFile()
8888
files_changed.push(file)
8989
obfiles_changed.push(this.files[i])

0 commit comments

Comments
 (0)