mirror of
https://github.com/zadam/trilium.git
synced 2024-11-12 18:54:49 +08:00
46 lines
No EOL
1,001 B
JavaScript
46 lines
No EOL
1,001 B
JavaScript
"use strict";
|
|
|
|
const fs = require('fs');
|
|
const data_dir = require('./data_dir');
|
|
|
|
if (!fs.existsSync(data_dir.LOG_DIR)) {
|
|
fs.mkdirSync(data_dir.LOG_DIR, 0o700);
|
|
}
|
|
|
|
const logger = require('simple-node-logger').createRollingFileLogger({
|
|
errorEventName: 'error',
|
|
logDirectory: data_dir.LOG_DIR,
|
|
fileNamePattern: 'trilium-<DATE>.log',
|
|
dateFormat:'YYYY-MM-DD'
|
|
});
|
|
|
|
function info(message) {
|
|
logger.info(message);
|
|
|
|
console.log(message);
|
|
}
|
|
|
|
function error(message) {
|
|
// we're using .info() instead of .error() because simple-node-logger emits weird error for showError()
|
|
info(message);
|
|
}
|
|
|
|
const requestBlacklist = [ "/libraries", "/javascripts", "/images", "/stylesheets" ];
|
|
|
|
function request(req) {
|
|
for (const bl of requestBlacklist) {
|
|
if (req.url.startsWith(bl)) {
|
|
return;
|
|
}
|
|
}
|
|
|
|
logger.info(req.method + " " + req.url);
|
|
}
|
|
|
|
info("Using data dir: " + data_dir.TRILIUM_DATA_DIR);
|
|
|
|
module.exports = {
|
|
info,
|
|
error,
|
|
request
|
|
}; |