lahiruzz
Is there any way to disable the logs in Urho3D ?
Is there any way to disable the logs in Urho3D ?
void MyApplication::Setup()
{
engineParameters_[EP_LOG_NAME] = "";
....
You can also build the engine without logging support at all.
Another option seems to be Log::SetLevel(LOG_NONE)
.