mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-09-09 04:08:28 +08:00
22 lines
513 B
TypeScript
22 lines
513 B
TypeScript
"use strict";
|
|
|
|
import fs from "fs";
|
|
import dateUtils from "../../services/date_utils.js";
|
|
import dataDir from "../../services/data_dir.js";
|
|
const { LOG_DIR } = dataDir;
|
|
|
|
function getBackendLog() {
|
|
const file = `${LOG_DIR}/trilium-${dateUtils.localNowDate()}.log`;
|
|
|
|
try {
|
|
return fs.readFileSync(file, "utf8");
|
|
} catch (e) {
|
|
// most probably the log file does not exist yet - https://github.com/zadam/trilium/issues/1977
|
|
return "";
|
|
}
|
|
}
|
|
|
|
export default {
|
|
getBackendLog
|
|
};
|