Commit 84253e8e authored by nanahira's avatar nanahira

log level

parent 4f66fd00
Pipeline #876 passed with stages
in 6 minutes and 17 seconds
...@@ -73,7 +73,7 @@ export class SMBReader { ...@@ -73,7 +73,7 @@ export class SMBReader {
try { try {
const testIndex: any[] = await this.db.query("select * from `filesRead` where filename = ?", [file.name]); const testIndex: any[] = await this.db.query("select * from `filesRead` where filename = ?", [file.name]);
if (testIndex.length) { if (testIndex.length) {
this.log.info(`File ${filePath} has already been read. Skipping.`); this.log.debug(`File ${filePath} has already been read. Skipping.`);
continue; continue;
} }
this.log.info(`Reading file ${filePath}...`); this.log.info(`Reading file ${filePath}...`);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment