Irrlicht without console output?
-
- Posts: 61
- Joined: Mon Oct 08, 2012 1:46 pm
Irrlicht without console output?
I it possible to deactivate the console-output of the irrlicht engine by code? It's really a mess to deal with all these output while the device starts and loads textures.
Re: Irrlicht without console output?
Create the device with createDeviceEx. In the SIrrlichtCreationParameters you can set LoggingLevel to ELL_NONE. Thought using ELL_ERROR is probably better so you still get a message when something breaks and will remove all non-error output. I think default level is ELL_INFORMATION.
IRC: #irrlicht on irc.libera.chat
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
Code snippet repository: https://github.com/mzeilfelder/irr-playground-micha
Free racer made with Irrlicht: http://www.irrgheist.com/hcraftsource.htm
-
- Posts: 61
- Joined: Mon Oct 08, 2012 1:46 pm
Re: Irrlicht without console output?
Thanks dude, this works fineCuteAlien wrote:Create the device with createDeviceEx. In the SIrrlichtCreationParameters you can set LoggingLevel to ELL_NONE. Thought using ELL_ERROR is probably better so you still get a message when something breaks and will remove all non-error output. I think default level is ELL_INFORMATION.