From 08194925cb198846aeb377c1635af2efd02c7de5 Mon Sep 17 00:00:00 2001 From: Julian Dinter Date: Fri, 2 Apr 2021 12:26:34 +0200 Subject: [PATCH 1/2] Changed log type of starting function of calendar module. --- modules/default/calendar/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/default/calendar/calendar.js b/modules/default/calendar/calendar.js index 292ceab1..fee50aab 100755 --- a/modules/default/calendar/calendar.js +++ b/modules/default/calendar/calendar.js @@ -84,7 +84,7 @@ Module.register("calendar", { // Override start method. start: function () { - Log.log("Starting module: " + this.name); + Log.info("Starting module: " + this.name); // Set locale. moment.updateLocale(config.language, this.getLocaleSpecification(config.timeFormat)); From f329770194fd9e43c5cec8cb79cbc70a9d827344 Mon Sep 17 00:00:00 2001 From: Julian Dinter Date: Fri, 2 Apr 2021 12:42:31 +0200 Subject: [PATCH 2/2] Added fix in CHANGELOG. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b08ab4c9..db772d7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -68,6 +68,7 @@ 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