Trent Mick
ffd9903d74
prep for future dev
2015-01-18 23:29:43 -08:00
Trent Mick
64b8fd1004
test cases for #182 , style tweaks, changelog, etc.
2015-01-18 23:27:28 -08:00
Martin Gausby
c0ca774238
Defend against throwing defined props in stringify
...
If an object has a defined property, that is enumerable, and this
property throws an error, it will make JSON stringify throw an
error, and potentially bring down the program.
The solution so far is to try-catch with the usual json stringifyer,
that guards against circular references. If this throws an error
we will attempt to guard against defined properties; and return
[Throws] if a property throws an error when accesed.
The following examples illustrate the problem:
```js
var obj = {};
obj.__defineGetter__('foo', function() { throw new Error('ouch!'); });
JSON.stringify(obj.foo); // error thrown
```
And using `Object.defineProperty`:
```js
var obj = {};
Object.defineProperty(obj, 'foo', {
get: function() { throw new Error('ouch!'); }
enumerable: true // enumerable is false by default
});
JSON.stringify(obj.foo); // error thrown
```
The cases we have seen in production is third party modules that
has enumerable getters that try to access properties on undefined
objects.
Fixes #182 .
2015-01-18 23:27:06 -08:00
Trent Mick
bed6fbfb66
prep for future dev
2015-01-17 22:05:16 -08:00
Trent Mick
08a4bab1ba
fix 'make check'
2015-01-17 22:04:39 -08:00
Trent Mick
b9e3a0d3cb
export 'bunyan.RotatingFileStream'
2015-01-17 21:56:46 -08:00
Trent Mick
83f33890de
added integration with source-map-support for integration with sourcemaps
...
Style updates, changelog, etc. Fixes #122
2015-01-17 21:15:38 -08:00
Trent Mick
1ed684d110
Ensure a top-level level
given in bunyan.createLogger
is *used* for given streams
...
Fixes #164
2015-01-17 20:39:06 -08:00
Trent Mick
b975c3a9f8
prep for future dev
2015-01-17 13:34:33 -08:00
Trent Mick
838b1995ef
correct version
2015-01-17 13:34:02 -08:00
Trent Mick
f4b97a4952
fix 'make check'; correct version
2015-01-17 13:33:12 -08:00
Trent Mick
da440c9324
Merge pull request #203 from cb1kenobi/useless_level
...
Removed useless level check.
2015-01-16 22:33:45 -08:00
Trent Mick
7dfde13ac3
Correct error added in commit d77f8247
...
Also, bump minor ver for `-L` CLI addition and coming release.
2015-01-16 22:31:50 -08:00
Trent Mick
d77f824723
improve rotating-file assert on 'count' field
...
Fixes #207 , #208
2015-01-16 09:00:13 -08:00
Trent Mick
783b1c4e39
prep for future dev
2015-01-15 22:20:21 -08:00
Trent Mick
4009692cdb
fix 'make check'
2015-01-15 22:19:59 -08:00
Trent Mick
7c0b566e63
[issue #210 ] Export bunyan.nameFromLevel
and bunyan.levelFromName
2015-01-15 22:18:29 -08:00
Chris Barber
ee5d9b8082
Removed unless level check.
2014-12-28 21:37:21 -08:00
Trent Mick
2f95bb8091
Gracefully handle use of an unbound Logger.{info,debug,...}
2014-12-08 10:43:33 -08:00
Connor Peet
1e793b182c
Don't make objCopy crash on non-objects
2014-12-05 22:23:43 -05:00
Trent Mick
79fc7178bd
prep for future dev
2014-11-17 21:46:54 -08:00
Trent Mick
980e281096
#185 add some comments, const, Daniel to authors, and changelog
2014-11-17 21:45:41 -08:00
Daniel Juhl
a280863be6
Handle far future timeouts for logrotation
...
Limit the delay to 2147483647 and then check in rotate() whether we should actually rotate the files or just issue another timeout.
Fixes #184 , #185 .
2014-11-17 21:43:45 -08:00
Trent Mick
48a903c040
prep for future dev
2014-11-13 23:15:55 -08:00
Trent Mick
74a2a1c57d
allow Logger level values outside TRACE..FATAL
2014-11-13 23:15:21 -08:00
Trent Mick
e43a1a405f
prep for future dev
2014-10-25 21:06:13 -07:00
Trent Mick
04de162a02
prep for future dev
2014-10-17 14:34:49 -07:00
Trent Mick
6fc941c9b4
Restore dtrace-provider in optionalDependencies
...
dtrace-provider v0.3.0 fixes build issues of yore. This fixes things
for node 0.11/0.12 usage.
Fixes #157
2014-10-15 22:18:11 -07:00
Trent Mick
5598700713
prep for future dev
2014-09-27 21:50:14 -07:00
Trent Mick
bd149b924b
prep for future dev
2014-09-27 21:26:15 -07:00
Trent Mick
a5ca41a150
Fix a breakage in log.info(err)
on a logger with no serializers.
2014-09-27 21:22:17 -07:00
Trent Mick
b9f347b757
prep for future dev
2014-09-27 21:08:53 -07:00
Trent Mick
d3929226a8
Fix 'make check'
2014-09-27 21:04:14 -07:00
Trent Mick
bc49f14cfa
Merge pull request #168 from matomesc/master_matomesc
...
Use the correct error serializer
2014-09-27 21:02:15 -07:00
Trent Mick
594cc82da1
Better browser sniffing suggested at 414f33563d (commitcomment-7936060)
2014-09-26 20:46:27 -07:00
Trent Mick
9c150d9c6e
prep for future dev
2014-09-21 21:21:06 -07:00
Trent Mick
414f33563d
browserify support, bump ver to 1.1.0
2014-09-21 21:20:43 -07:00
Mihai Tomescu
576e500b11
use the correct error serializer
2014-09-13 20:12:09 -04:00
Trent Mick
cb703ef474
prep for future dev
2014-08-25 00:51:14 -07:00
Trent Mick
7ef6b120db
'make check' clean
2014-08-25 00:50:53 -07:00
Trent Mick
eaa88a74b6
Merge pull request #138 from andreineculau/patch-1
...
fix #105 : export addStream and addSerializers
2014-08-25 00:30:16 -07:00
Ryan Graham
c3b8dd26a7
Fix parent instanceof guard
...
The ! operator is higher priority than the instanceof operator, so the
expression (! this instanceof X) is the same as ((!this) instanceof X),
which will always evaluate to false.
2014-08-08 18:28:29 -07:00
Ryan Graham
58df808325
Fix ctor instanceof guard
...
The ! operator is higher priority than the instanceof operator, so the
expression (! this instanceof X) is the same as ((!this) instanceof X),
which will always evaluate to false.
2014-08-08 18:26:07 -07:00
Trent Mick
76bc7acca4
prep for future dev
2014-08-01 16:01:01 -07:00
Trent Mick
660b706479
doc new -c CODE; drop dtrace-provider as optionalDependency ( fixes #135 ); add 'bunyan -0' shortcut
2014-08-01 15:57:48 -07:00
Trent Mick
2c2459df2f
#117 add warning about using rotating-file and cluster together
2014-06-01 23:34:50 -07:00
Trent Mick
865cec6a6d
prep for future dev
2014-05-31 23:00:25 -07:00
Trent Mick
42e99323ee
'make check'
2014-05-31 22:25:06 -07:00
Trent Mick
7fb58aa5e4
Merge pull request #125 from ascom-au/master
...
Rotating-file stream prevent process from exiting
2014-05-31 22:17:09 -07:00
Trent Mick
67b8bab6c9
prep for future dev
2014-05-30 21:00:24 -07:00
Trent Mick
fc0150f9fb
[issue #85 ] Ensure logging a non-object/non-string doesn't throw
2014-05-28 23:24:57 -07:00
Andrei Neculau
334e36cdfd
fix #105 : export addStream and addSerializers
2014-04-17 14:37:44 +02:00
Trent Mick
9f3ef6b42a
prep for future dev
2014-04-10 17:00:33 -07:00
Trent Mick
5b9da22e85
prep for future dev
2014-04-03 16:02:43 -07:00
Trent Mick
36f7e51a65
issue #131 Allow log.info(<number>)
and, most importantly, don't crash on that.
2014-04-03 15:59:49 -07:00
Glenn Murray
c80c0e8276
Merge 'chakrit/master' fixing #97 process not exiting
2014-03-04 15:46:06 +11:00
Trent Mick
64a0196ddf
vim settings in this file
2013-11-29 14:49:23 -08:00
Trent Mick
0322832326
prep for future dev
2013-11-25 23:47:24 -08:00
Maciej Małecki
f96ceb517d
Remove unused Logger#_mkRecord
2013-10-30 10:34:48 +01:00
Trent Mick
06ade787dc
prep for future dev
2013-10-11 13:17:14 -07:00
Trent Mick
eac13c08cc
issue #104 : log.reopenFileStreams()
convenience method to be used with external log rotation.
2013-10-11 13:16:29 -07:00
Chakrit Wichian
90360351b4
Fix #97 unref() the rotation timeout in RotatingFileStream.
...
The rotation `setTimeout` from `RotatingFileStream` will prevent the process from exiting.
This fix simply `unref()` the timeout immediately after it is set.
2013-08-21 14:47:28 +07:00
Trent Mick
27b679f243
prep for future dev
2013-07-02 16:44:16 -07:00
Trent Mick
8f7aff09b2
prep for future dev
2013-05-21 17:31:09 -07:00
Trent Mick
45dce561ec
prep for future dev
2013-05-17 02:12:30 -07:00
Trent Mick
b5e3bd290c
prep for future dev
2013-04-04 17:02:29 -07:00
Trent Mick
6841b8c184
prep for future dev
2013-04-01 21:00:54 -07:00
Trent Mick
3a9859365e
call this 0.21
2013-04-01 17:22:53 -07:00
Trent Mick
a111200a5a
make check
2013-04-01 17:21:01 -07:00
Trent Mick
f616276dc6
style: 4-space indents
2013-03-28 17:42:32 -07:00
Trent Mick
7a6c3f5ce6
more 'make check' jsstyle fixes
2013-03-28 17:39:00 -07:00
Trent Mick
c9f05b6743
make check: prefer single-quote strings
2013-03-28 17:25:01 -07:00
Ricardo Graça
7681d83b5f
Allow omitting period in rotating-file streams
2013-03-19 16:08:36 +00:00
Trent Mick
2d2d39d1a7
prep for future dev
2013-03-15 11:27:00 -07:00
Trent Mick
1a8be0c1e6
OS-2030, smartos-live #184 : fix serializer bug added in bunyan 0.18.3
2013-03-15 11:25:56 -07:00
Trent Mick
86a4a3e7aa
prep for future dev
2013-03-11 15:53:20 -07:00
Trent Mick
6ff9861b35
ver update
2013-03-11 15:52:27 -07:00
Trent Mick
3f6c2bea36
change to 'err' serialization to NOT include extra err attributes: for safety
2013-03-11 15:51:33 -07:00
Trent Mick
4152ea2686
prep for future dev
2013-03-01 16:59:50 -08:00
Trent Mick
f096b303c1
exclude domain keys on error objects for 'err' serializer
2013-03-01 16:58:56 -08:00
Trent Mick
b2438ddb2c
prep for future dev
2013-01-29 00:00:35 -08:00
Trent Mick
573c33ab99
changelog for recent stuff; 'DEBUG' was a dumb name for this internal var
2013-01-29 00:00:04 -08:00
Chad Walker
a414463ae2
change rotation debug to false
2013-01-28 18:40:31 -08:00
Trent Mick
0a39334d3c
prep for future dev
2013-01-22 17:33:47 -08:00
Trent Mick
acfe28bffe
prep for future dev
2013-01-22 17:00:14 -08:00
Trent Mick
b1c143c87a
bunyan CLI auto-paging
2013-01-18 21:24:23 -08:00
Trent Mick
e04f574f55
prep for future dev
2013-01-04 14:32:34 -08:00
Trent Mick
480ee5d1e0
log rotation support; v0.17.0; improve README docs
2013-01-04 14:30:27 -08:00
Trent Mick
c5bfdc4cf3
prep for future dev
2012-12-14 11:48:56 -08:00
Trent Mick
9acc97ed7f
prep for future dev
2012-11-14 22:42:11 -08:00
Trent Mick
af002db218
prep for future dev
2012-11-13 00:19:42 -08:00
Trent Mick
9d7bd77c76
prep for future dev
2012-11-06 12:55:57 -08:00
Trent Mick
3869ee308c
prep for future dev
2012-11-04 22:13:34 -08:00
Trent Mick
7166772533
prep for future dev
2012-11-02 13:44:27 -07:00
Trent Mick
da55eeee60
back to dtrace-provider dep
2012-11-02 13:36:46 -07:00
Trent Mick
7e20b2d988
prep for future dev
2012-11-02 13:29:19 -07:00
Trent Mick
d133deff82
prep for future dev
2012-11-02 12:16:11 -07:00
Trent Mick
77b556d245
prep for future dev
2012-11-01 23:50:12 -07:00
Trent Mick
79e5ded839
'bunyan -p PID' support
2012-11-01 23:49:09 -07:00
Trent Mick
c277e1d15d
prep for future dev
2012-11-01 13:14:08 -07:00