mirror of
https://github.com/zadam/trilium.git
synced 2025-11-01 19:05:59 +01:00
always use template strings instead of string concatenation
This commit is contained in:
@@ -25,7 +25,7 @@ function vacuumDatabase() {
|
||||
function checkIntegrity() {
|
||||
const results = sql.getRows("PRAGMA integrity_check");
|
||||
|
||||
log.info("Integrity check result: " + JSON.stringify(results));
|
||||
log.info(`Integrity check result: ${JSON.stringify(results)}`);
|
||||
|
||||
return {
|
||||
results
|
||||
|
||||
Reference in New Issue
Block a user