diff --git a/lib/bunyan.js b/lib/bunyan.js index 6eaf539..b43e7a6 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -990,6 +990,9 @@ RotatingFileStream.prototype._setupNextRot = function () { this.timeout = setTimeout( function () { self.rotate(); }, this.rotAt - Date.now()); + if (typeof this.timeout.unref === 'function') { + this.timeout.unref(); + } } RotatingFileStream.prototype._nextRotTime = function _nextRotTime(first) {