From d327db5d89fc45cb9e785fbe94d9e588462a23ea Mon Sep 17 00:00:00 2001 From: "flamingo[bot]" <277372822+flamingo[bot]@users.noreply.github.com> Date: Mon, 24 Aug 2026 05:17:41 +0000 Subject: [PATCH] fix(MESHCENT-005-2): console.info1 is not a standard console method, will throw inside catch block --- agents/modules_meshcmd/amt-lme.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/agents/modules_meshcmd/amt-lme.js b/agents/modules_meshcmd/amt-lme.js index 5f55ed5bdc..0cead5c1bb 100644 --- a/agents/modules_meshcmd/amt-lme.js +++ b/agents/modules_meshcmd/amt-lme.js @@ -214,7 +214,7 @@ function lme_heci(options) { this.LMS.emit('bind', this._binded); } catch (ex) { - console.info1(ex, 'Port ' + port); + console.info(ex, 'Port ' + port); if(!this._emitConnected) { this._emitConnected = true; @@ -493,3 +493,4 @@ function _lmsNotifyToCode(notify) { } module.exports = lme_heci; +