Merge pull request #2512 from jupadin/log-consistency

This commit is contained in:
Michael Teeuw 2021-04-02 12:56:28 +02:00 committed by GitHub
commit d85e1c70d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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));