Console.log in midi remote javascript script not working

Hi,

I have cubase 14 (latest patch) and i am developing a midi remote script, but none of my console.log messages appear in the script console .

i.e
function makeButtons(page) {

for (var i = 0; i < buttons.length; i++) {

    (function(def) {

        **console.log("making button "+def.category+" "+def.name);**

        var btn = deviceDriver.mSurface.makeButton(i, 0, 1, 1.5);

am i being stupid ? or do i have to set ‘something’ to enable logging ?

also (as an aside) - is there a callback function available that lets me inspect any incomming midi messages (I mean globally within the script)

sorry i’m a newbie …

Hi,

Try to increase the height of the window, please. This is how does the Console window look like:

d’oh - told you i was a newbie - thanks !!!