mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-02-20 18:09:40 +00:00
Lower log level
This commit is contained in:
parent
0f6a64ad54
commit
e57504ae7c
2 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue