From 3a87fe666f02575d49c1b25ec947912bc1ea39c2 Mon Sep 17 00:00:00 2001 From: Cornelius Suermann Date: Sat, 5 Jun 2021 09:16:44 +0200 Subject: [PATCH] fix(suncron): Do not include exception stacktrace in log msg --- suncron.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/suncron.js b/suncron.js index f7611c8..bc1222f 100644 --- a/suncron.js +++ b/suncron.js @@ -101,8 +101,7 @@ module.exports = function (RED) { } } catch (e) { console.log( - `ignoring event type '${eventType}' as no event time could be determined for current day.`, - e + `ignoring event type '${eventType}' as no event time could be determined for current day.` ) } }