You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nodebb/src/meta/logs.js

28 lines
540 B
JavaScript

10 years ago
'use strict';
var path = require('path'),
fs = require('fs'),
winston = require('winston');
module.exports = function(Meta) {
Meta.logs = {
path: path.join('logs', path.sep, 'output.log')
};
Meta.logs.get = function(callback) {
fs.readFile(this.path, {
encoding: 'utf-8'
}, function(err, logs) {
if (err) {
winston.error('[meta/logs] Could not retrieve logs: ' + err.message);
}
callback(undefined, logs || '');
});
10 years ago
};
10 years ago
Meta.logs.clear = function(callback) {
fs.truncate(this.path, 0, callback);
10 years ago
};
10 years ago
};