bifocal/node_modules/@tryghost/bunyan-rotating-filestream/lib/customEvents.js

8 lines
315 B
JavaScript
Raw Normal View History

2024-06-19 09:56:58 -04:00
module.exports = {
// Emitted when a new rotation is needed
Rotate: Symbol('rotate'),
// Emitted when a new file handle is acquired with the file info
NewFile: Symbol('newFile'),
// Emitted whenever data is written to the file with the number of bytes
BytesWritten: Symbol('bytesWritten')
};