change rotation debug to false

master
Chad Walker 2013-01-28 18:40:31 -08:00
parent 0a39334d3c
commit a414463ae2
1 changed files with 2 additions and 2 deletions

View File

@ -992,7 +992,7 @@ RotatingFileStream.prototype._setupNextRot = function () {
}
RotatingFileStream.prototype._nextRotTime = function _nextRotTime(first) {
var DEBUG = true;
var DEBUG = false;
if (DEBUG) console.log('-- _nextRotTime: %s%s', this.periodNum, this.periodScope);
var d = new Date();
@ -1071,7 +1071,7 @@ RotatingFileStream.prototype._nextRotTime = function _nextRotTime(first) {
RotatingFileStream.prototype.rotate = function rotate() {
// XXX What about shutdown?
var self = this;
var DEBUG = true;
var DEBUG = false;
if (DEBUG) console.log('-- [%s] rotating %s', new Date(), self.path);
if (self.rotating) {