Correct error added in commit d77f8247
Also, bump minor ver for `-L` CLI addition and coming release.
This commit is contained in:
parent
978a2439a3
commit
7dfde13ac3
2 changed files with 5 additions and 5 deletions
|
@ -6,7 +6,7 @@ Known issues:
|
||||||
bug](https://github.com/TooTallNate/node-gyp/issues/65).
|
bug](https://github.com/TooTallNate/node-gyp/issues/65).
|
||||||
|
|
||||||
|
|
||||||
## bunyan 1.2.5 (not yet released)
|
## bunyan 1.3.0 (not yet released)
|
||||||
|
|
||||||
- [issue #103] `bunyan -L` (or `bunyan --time local`) to show local time.
|
- [issue #103] `bunyan -L` (or `bunyan --time local`) to show local time.
|
||||||
Bunyan log records store `time` in UTC time. Sometimes it is convenient
|
Bunyan log records store `time` in UTC time. Sometimes it is convenient
|
||||||
|
|
|
@ -1051,12 +1051,12 @@ function RotatingFileStream(options) {
|
||||||
this.stream = fs.createWriteStream(this.path,
|
this.stream = fs.createWriteStream(this.path,
|
||||||
{flags: 'a', encoding: 'utf8'});
|
{flags: 'a', encoding: 'utf8'});
|
||||||
this.count = (options.count == null ? 10 : options.count);
|
this.count = (options.count == null ? 10 : options.count);
|
||||||
assert.equal(typeof (self.count), 'number',
|
assert.equal(typeof (this.count), 'number',
|
||||||
format('rotating-file stream "count" is not a number: %j (%s) in %j',
|
format('rotating-file stream "count" is not a number: %j (%s) in %j',
|
||||||
self.count, typeof(self.count), self));
|
this.count, typeof(this.count), this));
|
||||||
assert.ok(self.count >= 0,
|
assert.ok(this.count >= 0,
|
||||||
format('rotating-file stream "count" is not >= 0: %j in %j',
|
format('rotating-file stream "count" is not >= 0: %j in %j',
|
||||||
self.count, self));
|
this.count, this));
|
||||||
|
|
||||||
// Parse `options.period`.
|
// Parse `options.period`.
|
||||||
if (options.period) {
|
if (options.period) {
|
||||||
|
|
Loading…
Reference in a new issue