mirror of https://github.com/TriliumNext/Notes
logging stuff to rotated files through simple-node-logger
parent
11bfae4007
commit
b4bb1b539e
@ -0,0 +1,41 @@
|
|||||||
|
"use strict";
|
||||||
|
|
||||||
|
const fs = require('fs');
|
||||||
|
const LOG_DIR = require('./data_dir').LOG_DIR;
|
||||||
|
|
||||||
|
if (!fs.existsSync(LOG_DIR)) {
|
||||||
|
fs.mkdirSync(LOG_DIR, 0o700);
|
||||||
|
}
|
||||||
|
|
||||||
|
const logger = require('simple-node-logger').createRollingFileLogger({
|
||||||
|
errorEventName: 'error',
|
||||||
|
logDirectory: LOG_DIR,
|
||||||
|
fileNamePattern: 'trilium-<DATE>.log',
|
||||||
|
dateFormat:'YYYY-MM-DD'
|
||||||
|
});
|
||||||
|
|
||||||
|
function info(message) {
|
||||||
|
logger.info(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
function error(message) {
|
||||||
|
logger.error(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
const requestBlacklist = [ "/api/audit", "/libraries", "/javascripts", "/images", "/stylesheets" ];
|
||||||
|
|
||||||
|
function request(req) {
|
||||||
|
for (const bl of requestBlacklist) {
|
||||||
|
if (req.url.startsWith(bl)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
logger.info(req.method + " " + req.url);
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = {
|
||||||
|
info,
|
||||||
|
error,
|
||||||
|
request
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue