diff --git a/CHANGELOG.md b/CHANGELOG.md index db772d7b..62f66df3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ This project adheres to [Semantic Versioning](https://semver.org/). ❤️ **Donate:** Enjoying MagicMirror²? [Please consider a donation!](https://magicmirror.builders/donate) With your help we can continue to improve the MagicMirror² +## [2.16.0] - + +### Fixed +- Fix calendar start function logging inconsistency +- Fix updatenotification start function logging inconsistency + ## [2.15.0] - 2021-04-01 Special thanks to the following contributors: @EdgardosReis, @MystaraTheGreat, @TheDuffman85, @ashishtank, @buxxi, @codac, @fewieden, @khassel, @klaernie, @qu1que, @rejas, @sdetweil & @thomasrockhu. @@ -68,7 +74,6 @@ Special thanks to the following contributors: @EdgardosReis, @MystaraTheGreat, @ - Fix calendar time/date adjustment when time with GMT offset is different day (#2488). - Fix calendar daylight savings offset calculation if recurring FULL DAY start date before 2007 (#2483). - Fix newsreaders template, for wrong test for nowrap in 2 places (should be if not). -- Fix calendar start function logging inconsistency ## [2.14.0] - 2021-01-01 diff --git a/modules/default/updatenotification/updatenotification.js b/modules/default/updatenotification/updatenotification.js index c67205a7..df4a2a80 100644 --- a/modules/default/updatenotification/updatenotification.js +++ b/modules/default/updatenotification/updatenotification.js @@ -17,7 +17,7 @@ Module.register("updatenotification", { start: function () { var self = this; - Log.log("Start updatenotification"); + Log.info("Start updatenotification"); setInterval(() => { self.moduleList = {}; self.updateDom(2);