2 All notable changes to this project will be documented in this file.
4 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7 ## [2.0.0] - 2020-09-20
9 - CHANGELOG format is now using `Keep a Changelog` format.
10 - CI updated to use `gitlab` instead of `circle`
11 - Updates dev dependencies
12 - Replaces `microtime` in favor of `process.hrtime.bigint()`. This means that
13 the timestamp is now in *nanoseconds* and has no decimal component.
14 - If you log an object, it will first attempt to read a `message` property.
15 All other properties will be extended with the log object.
16 - Renamed `log_utilities` to utilities
17 - Changes export so it uses a single object instead of having everything under
19 - Update README to reflect current usage.
22 - Removes the meta parameter from buildLog.
24 ## [1.1.0] - 2016-01-22
26 - a new parameter called meta that expects an object, it will be used to extend
28 - gettLevelAnsi method, it returns an ANSI keyword depending on the log level
30 - Simple formatter uses `getLevelAnsi`, this means that info and debug get
31 colors: info is blue, debug is green.
32 - Token formatter now supports the `{{_ansi: _level}}` token that uses
33 `getLevelAnsi` to generatte color depending on the level.
36 - README.md now has references to all the new features
40 - Initial log functionality