Node Express web server - constant pinging on discovery

So when running a Node Express web server from a command line, the Roon API discovery method constantly spits out ping results as, I assume, it attempts to stay in contact with the Core. Is there any way to turn off all that noise? It make it hard to troubleshoot by logging out to the console.

can you tell me what you are seeing so i can see what you mean?

See the pic below. This type of message scrolls constantly as the Node Express server runs, and starts when start_discovery(); from the Roon API is executed. As a test, I removed the start_discovery() call from the script, and the pinging stops, but, as expected, the extension is no longer seen by the Roon core.

Since this is all javascript code, I realized “hey, I can just crack open the code and find where stuff is getting logged to the console”, and sure enough, if found the lines in the lib.js file in the node-roon-api folder. FYI just search for “console.log” in the lib.js file and comment out as you see fit.