1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Lower log level

This commit is contained in:
elsid 2018-10-13 22:01:37 +03:00
parent 0f6a64ad54
commit e57504ae7c
No known key found for this signature in database
GPG Key ID: B845CB9FEE18AB40
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ namespace MWMechanics
catch (const DetourNavigator::NavigatorException& exception)
{
DetourNavigator::log("PathFinder::buildPathByNavigator navigator exception: ", exception.what());
Log(Debug::Error) << "Build path by navigator exception: " << exception.what();
Log(Debug::Warning) << "Build path by navigator exception: " << exception.what();
}
}
}

View File

@ -111,7 +111,7 @@ namespace DetourNavigator
catch (const std::exception& e)
{
DetourNavigator::log("AsyncNavMeshUpdater::process exception: ", e.what());
::Log(Debug::Error) << "Exception while process navmesh updated job: " << e.what();
::Log(Debug::Warning) << "Exception while process navmesh updated job: " << e.what();
}
}
log("stop process jobs");