diff --git a/CHANGELOG.md b/CHANGELOG.md index d2b051b2..c6e2af46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -82,6 +82,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 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));