Logs - I really need help

I have a question that may seem trivial and banal, but I really need an answer, because I’ve already looked at the web documentation and didn’t find the answer, possibly because it’s very trivial, but in my case I’m not able to use it and to get around the problem I’m having to use “alert” from JS, but I want to use the log panel.

I don’t know if I’m using it wrong or if I have to enable something.

For example, in the onclick event of a button I want to display a value in the log panel, for example:

console.log("Important notice: ");
console.warn("Important notice: ");
console.error("Error encountered: ");

When I run this information, it doesn’t appear in my log panel. What should I do?

Hi @wilsonfe

To display logs in the Logs tab, you need to use the Log action: Log | Documentation

Friend, using the sequence of actions I know that there is the Log action. I want to send the message to the log panel from within a function. During the processing of a function. Wouldn’t this be possible?