# HG changeset patch # User Alain Mazy # Date 1498559887 -7200 # Node ID 4d500a555aade2e91e0421be08585e7ce9a749af # Parent 89d17c72287b70b8f1e69a5f4004df056feb8c45 catching std::exception before (...) to try to get more debug info diff -r 89d17c72287b -r 4d500a555aad Core/MultiThreading/RunnableWorkersPool.cpp --- a/Core/MultiThreading/RunnableWorkersPool.cpp Fri Jun 23 16:43:29 2017 +0200 +++ b/Core/MultiThreading/RunnableWorkersPool.cpp Tue Jun 27 12:38:07 2017 +0200 @@ -77,6 +77,10 @@ { LOG(ERROR) << "Not enough memory to handle some runnable object"; } + catch (std::exception& e) + { + LOG(ERROR) << "Std excetion while handling some runnable object: " << e.what(); + } catch (...) { LOG(ERROR) << "Native exception while handling some runnable object";