Archive 17/01/2023.

Disable logs in Urho3D

lahiruzz

Is there any way to disable the logs in Urho3D ?

Pencheff
void MyApplication::Setup()
{
    engineParameters_[EP_LOG_NAME] = "";
    ....
weitjong

You can also build the engine without logging support at all.

Modanung

Another option seems to be Log::SetLevel(LOG_NONE).