From 8b3f59b8413f01f1e82038b081a72638560436bc Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Thu, 7 Jul 2022 12:34:26 -0700 Subject: [PATCH] fixed bug with console display optimization --- test/self-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/self-test.js b/test/self-test.js index 383bc45..88d2eb6 100644 --- a/test/self-test.js +++ b/test/self-test.js @@ -539,7 +539,7 @@ server.on('upgrade', function (msg, sck, head) case 'console': if (j.value != 'Command returned an exception error: TypeError: cyclic input') { - if (j.sessionid == null || process.argv.getParameter('verbose') != null) + if (j.sessionid == null || process.argv.getParameter('verbose') != null || consoleMode) { console.log('Agent: ' + j.value); }