-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #20 from Kyorai/mk-switch-to-otp-logger
Replace Lager with OTP logger
- Loading branch information
Showing
19 changed files
with
269 additions
and
600 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Cuttlefish Change Log | ||
|
||
## 3.0.0 (under development) | ||
|
||
### OTP Logger Instead of Lager | ||
|
||
The library now uses standard OTP logger instead of Lager. | ||
|
||
Log entries use a very similar format but the timestamp | ||
formatting has changed. | ||
|
||
In older releases with Lager: | ||
|
||
``` | ||
15:12:26.054 [info] No app.config or vm.args detected in /etc, activating cuttlefish | ||
``` | ||
|
||
In 3.0, on a cutting edge Erlang version: | ||
|
||
``` | ||
2021-03-08T15:14:55.963768+03:00 [info] No app.config or vm.args detected in /etc, activating cuttlefish | ||
``` | ||
|
||
GitHub issue: [#19](https://github.com/Kyorai/cuttlefish/issues/19). | ||
|
||
|
||
## 2.7.0 (Mar 7, 2021) | ||
|
||
### Erlang 24 Support | ||
|
||
Cuttlefish is now compatible (builds, runs) with Erlang 24. | ||
|
||
### Older Erlang Releases Support Dropped | ||
|
||
Cuttlefish now supports Erlang 22 through 24. `2.6.0` was the last | ||
release to support older Erlang versions, e.g. 18 or 19. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,8 @@ | ||
{"1.2.0", | ||
[{<<"getopt">>,{pkg,<<"getopt">>,<<"1.0.2">>},0}, | ||
{<<"goldrush">>,{pkg,<<"goldrush">>,<<"0.1.9">>},1}, | ||
{<<"lager">>,{pkg,<<"lager">>,<<"3.9.1">>},0}]}. | ||
[{<<"getopt">>,{pkg,<<"getopt">>,<<"1.0.2">>},0}]}. | ||
[ | ||
{pkg_hash,[ | ||
{<<"getopt">>, <<"33D9B44289FE7AD08627DDFE1D798E30B2DA0033B51DA1B3A2D64E72CD581D02">>}, | ||
{<<"goldrush">>, <<"F06E5D5F1277DA5C413E84D5A2924174182FB108DABB39D5EC548B27424CD106">>}, | ||
{<<"lager">>, <<"5885BC71308CD38F9D025C8ECDE4E5CCE1CE8565F80BFC6199865C845D6DBE95">>}]}, | ||
{<<"getopt">>, <<"33D9B44289FE7AD08627DDFE1D798E30B2DA0033B51DA1B3A2D64E72CD581D02">>}]}, | ||
{pkg_hash_ext,[ | ||
{<<"getopt">>, <<"A0029AEA4322FB82A61F6876A6D9C66DC9878B6CB61FAA13DF3187384FD4EA26">>}, | ||
{<<"goldrush">>, <<"99CB4128CFFCB3227581E5D4D803D5413FA643F4EB96523F77D9E6937D994CEB">>}, | ||
{<<"lager">>, <<"3F59BA75A04A99E5F18BF91C89F46DCE536F83C6CB415FE26E6E75A62BEF37DC">>}]} | ||
{<<"getopt">>, <<"A0029AEA4322FB82A61F6876A6D9C66DC9878B6CB61FAA13DF3187384FD4EA26">>}]} | ||
]. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.