From 7729e396b2a5133fc3dba4b6a65f08dfb350f4f1 Mon Sep 17 00:00:00 2001 From: elsid Date: Wed, 27 Nov 2019 21:34:34 +0100 Subject: [PATCH] Fix exceptions logging --- components/detournavigator/asyncnavmeshupdater.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/detournavigator/asyncnavmeshupdater.cpp b/components/detournavigator/asyncnavmeshupdater.cpp index b42a6b650..e085aba16 100644 --- a/components/detournavigator/asyncnavmeshupdater.cpp +++ b/components/detournavigator/asyncnavmeshupdater.cpp @@ -135,7 +135,7 @@ namespace DetourNavigator } catch (const std::exception& e) { - Log(Debug::Error) << "AsyncNavMeshUpdater::process exception: ", e.what(); + Log(Debug::Error) << "AsyncNavMeshUpdater::process exception: " << e.what(); } } Log(Debug::Debug) << "Stop navigator jobs processing";