OXIESEC PANEL
- Current Dir:
/
/
opt
/
passenger
/
src
/
nodejs_supportlib
/
vendor-copy
/
winston
/
lib
/
winston
/
transports
Server IP: 2a02:4780:11:1084:0:327f:3464:10
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
10/21/2025 06:53:57 AM
rwxr-xr-x
📄
console.js
3.91 KB
07/09/2025 07:27:24 PM
rw-r--r--
📄
file.js
17.82 KB
07/09/2025 07:27:24 PM
rw-r--r--
📄
http.js
5.35 KB
07/09/2025 07:27:24 PM
rw-r--r--
📄
memory.js
2.46 KB
07/09/2025 07:27:24 PM
rw-r--r--
📄
transport.js
3.64 KB
07/09/2025 07:27:24 PM
rw-r--r--
Editing: memory.js
Close
var events = require('events'), util = require('util'), common = require('../common'), Transport = require('./transport').Transport; // // ### function Memory (options) // #### @options {Object} Options for this instance. // Constructor function for the Memory transport object responsible // for persisting log messages and metadata to a memory array of messages. // var Memory = exports.Memory = function (options) { Transport.call(this, options); options = options || {}; this.errorOutput = []; this.writeOutput = []; this.json = options.json || false; this.colorize = options.colorize || false; this.prettyPrint = options.prettyPrint || false; this.timestamp = typeof options.timestamp !== 'undefined' ? options.timestamp : false; this.showLevel = options.showLevel === undefined ? true : options.showLevel; this.label = options.label || null; this.depth = options.depth || null; if (this.json) { this.stringify = options.stringify || function (obj) { return JSON.stringify(obj, null, 2); }; } }; // // Inherit from `winston.Transport`. // util.inherits(Memory, Transport); // // Expose the name of this Transport on the prototype // Memory.prototype.name = 'memory'; // // ### function log (level, msg, [meta], callback) // #### @level {string} Level at which to log the message. // #### @msg {string} Message to log // #### @meta {Object} **Optional** Additional metadata to attach // #### @callback {function} Continuation to respond to when complete. // Core logging method exposed to Winston. Metadata is optional. // Memory.prototype.log = function (level, msg, meta, callback) { if (this.silent) { return callback(null, true); } var self = this, output; output = common.log({ colorize: this.colorize, json: this.json, level: level, message: msg, meta: meta, stringify: this.stringify, timestamp: this.timestamp, prettyPrint: this.prettyPrint, raw: this.raw, label: this.label, depth: this.depth, formatter: this.formatter, humanReadableUnhandledException: this.humanReadableUnhandledException }); if (level === 'error' || level === 'debug') { this.errorOutput.push(output); } else { this.writeOutput.push(output); } self.emit('logged'); callback(null, true); }; Memory.prototype.clearLogs = function () { this.errorOutput = []; this.writeOutput = []; };