Hi, currently there is a console.log in ThinEngine.js
that produces the following log in JS console
const versionToLog = `Babylon.js v${ThinEngine.Version}`;
console.log(versionToLog + ` - ${this.description}`);
Is there a way to disable it?
roland
2
Hi, something like this could help. Run this code before initializing BJS ofcourse 
const consoleLog = console.log
console.log = (...data) => {
!data[0].includes('Babylon.js ') && consoleLog(data.join(", "))
}
You can set the console.log handler back to consoleLog at any time.
r.

https://playground.babylonjs.com/#C3NI5Q#1
3 Likes
sebavan
3
Agree with @roland but this is sad
Why not let the world (the F12 ppl of it) know you use Babylon 
1 Like
Ah…didn’t realize this was promotional and intentional. Now that I think of it makes much sense 
sebavan
5
Not really promotional but truly intentional, as it makes us all smile when we open the dev tool and notice Babylon in the log 
1 Like