From 08194925cb198846aeb377c1635af2efd02c7de5 Mon Sep 17 00:00:00 2001 From: Julian Dinter Date: Fri, 2 Apr 2021 12:26:34 +0200 Subject: [PATCH] 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));