Turn off default info script when an event handler created?

Is it possible to turn off this so the info script doesn’t show up every time?

Not possible. However, you can use console.clear() to clean the console

What’s your use case?.

I am just adding some basic velo to create custom buttons with show and hide functions. It’s a bit annoying having to delete the info Below) each time so the console is clean. It’s nothing too important but I wanted to see if there is a way to turn these off. That’s all.
// This function was added from the Properties & Events panel. To learn more, visit Working with the Properties & Events Panel
// Add your code for this event here:
}

/**

  • Adds an event handler that runs when the mouse pointer is moved
    onto the element.

Deprecation note: The $w parameter of event handlers is being deprecated. To get
a scoped selector for working with elements in repeater items, use the $w.at() function
and pass it the context property of the event parameter: $item = $w.at(event.context). To learn more, see
here.

You can also define an event handler using the Properties and Events panel.

  • @param {$w.MouseEvent} event
    */