How to hide Adonis debugging messages

Title. Can any Adonis wizards help? Adonis likes to flood the output with a lot of stuff i don’t really need to know and I would like to disable that.

4 Likes

Bump, This seems to be annoying me aswell.

Alright so I’ve found a solution to this.

Press Ctrl + Shift + F to open up a finder which will allow you to search through ALL scripts for strings. You’ll want to look for keywords such as ::ADONIS:: and then just delete the print() lines. Boom! Simple Fix.

Another thing to note that the admin requires other assets, you should read the code of the admin and find the URL to linked resource, then manually get the model of the resources and parent it under the script then instead of it requiring an asset ID such as require(84395354), make it link to require(script.ModuleScript)

Some scripting knowledge is required to understand this