From df389bd7fa04751c2ba363e1fe8e63752f934c2c Mon Sep 17 00:00:00 2001 From: Tor-Einar Skog <tor-einar.skog@nibio.no> Date: Tue, 30 May 2023 14:34:04 +0200 Subject: [PATCH] Fix recursive call to log --- src/components/CommonUtil.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CommonUtil.vue b/src/components/CommonUtil.vue index 4ce19cc..00c4408 100644 --- a/src/components/CommonUtil.vue +++ b/src/components/CommonUtil.vue @@ -83,7 +83,7 @@ logInfo: function(message) { if(CommonUtilLocal.CONST_DEBUG){ - CommonUtil.logInfo(message); + console.info(message); } }, -- GitLab