refs #4550 Log debug mode enabled when enabled
gitea/printnatura/pipeline/head This commit looks good
Details
gitea/printnatura/pipeline/head This commit looks good
Details
This commit is contained in:
parent
d6fe231cea
commit
d3ca5c2e87
|
@ -24,6 +24,8 @@ class PrintServer {
|
||||||
const decoration = '△▽'.repeat(10);
|
const decoration = '△▽'.repeat(10);
|
||||||
const printnatura = colors.bgBlack.bold(' Print'.white + 'Natura '.green);
|
const printnatura = colors.bgBlack.bold(' Print'.white + 'Natura '.green);
|
||||||
console.log(`${decoration} ${printnatura} ${decoration}`);
|
console.log(`${decoration} ${printnatura} ${decoration}`);
|
||||||
|
if (this.conf.debug)
|
||||||
|
this.serverLog('log', 'Debug mode enabled'.yellow);
|
||||||
if (this.conf.dryPrint)
|
if (this.conf.dryPrint)
|
||||||
this.serverLog('log', 'Running in dry print mode, documents won\'t be printed'.yellow);
|
this.serverLog('log', 'Running in dry print mode, documents won\'t be printed'.yellow);
|
||||||
if (this.conf.keepFile)
|
if (this.conf.keepFile)
|
||||||
|
@ -248,7 +250,7 @@ class PrintServer {
|
||||||
const resErr = new Error(`${err.message}: ${resMessage}`);
|
const resErr = new Error(`${err.message}: ${resMessage}`);
|
||||||
resErr.stack = err.stack;
|
resErr.stack = err.stack;
|
||||||
throw resErr;
|
throw resErr;
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
throw err;
|
throw err;
|
||||||
}
|
}
|
||||||
|
@ -270,7 +272,7 @@ class PrintServer {
|
||||||
if (!conf.dryPrint) await pExec(printCommand);
|
if (!conf.dryPrint) await pExec(printCommand);
|
||||||
} catch(err) {
|
} catch(err) {
|
||||||
throw new Error(`Print error: ${err.message}`);
|
throw new Error(`Print error: ${err.message}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
await conn.query(updateQuery, ['printed', null, jobId]);
|
await conn.query(updateQuery, ['printed', null, jobId]);
|
||||||
this.jobLog(jobId, 'log', `${jobData.report}: '${printCommand}': GET ${url}`);
|
this.jobLog(jobId, 'log', `${jobData.report}: '${printCommand}': GET ${url}`);
|
||||||
|
@ -302,7 +304,6 @@ class PrintServer {
|
||||||
if (index !== -1) this.jobs.splice(index, 1);
|
if (index !== -1) this.jobs.splice(index, 1);
|
||||||
setTimeout(() => this.getJobs());
|
setTimeout(() => this.getJobs());
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
jobLog(jobId, realm, message) {
|
jobLog(jobId, realm, message) {
|
||||||
this.log(`Job[${colors.yellow(jobId)}]`, realm, message);
|
this.log(`Job[${colors.yellow(jobId)}]`, realm, message);
|
||||||
|
|
Loading…
Reference in New Issue