Merge pull request #67 from chad3814/master
remove DEBUG console.logs from rotation code
This commit is contained in:
commit
76547d25c6
1 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue