Can i suppress log of babylon version?

Hello!
A quick search in the BabylonJS source code reveals this:

So unfortunatelly no, you can’t prevent to log the BabylonJS version unless you compile your own BabylonJS library without this line.

Or you can redefine the console.log function to your own and make a decision what to log. To suppress everything:

console.log = function() {}
6 Likes