-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCHANGELOG
52 lines (30 loc) · 1.33 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
2015-01-21 Ben Beltran <[email protected]>
Version 1.1.3
* lib/loggers/file.js: Makes the log work in append mode instead of
overwrite mode.
2015-01-09 Sergio de la Garza <[email protected]>
Version 1.1.2
* lib/cobalt.js (dependencies): Require colors fix the log output when
using the tocken formatter.
2015-01-09 Ben Beltran <[email protected]>
Version 1.1.1
* lib/loggers/file.js: Writes raw log if no formatter is present.
* lib/cobalt.js: Logging null now converts it to the string "null";
Version 1.1.0
* lib/loggers/file.js: Includes the new file logger.
* lib/formatters/simple.js (format): Simple formatter outputs date and
loglevel.
* lib/cobalt.js: Includes the file logger and simple formatter.
* lib/formatters/token.js: Extends with options on
initialization, including a new option isoDate that will make the
date an ISOString.
* README.md: Updates documentation to consider the new options, formatter
and logger.
2014-03-20 Ben Beltran <[email protected]>
Version 1.0.0
* lib/cobalt.js (buildLog): Logging a logObject will now use the calling
method's severity instead of the logObject severity. so calling `#error`
will always provide severity level 3.
* package.json: Updates neon dependency to 2.0, adds tellurium as
dev-dependency.
* /test: Adds VERY basic tests before tellurium is integrated.