aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
Diffstat (limited to 'src/zencore/include')
-rw-r--r--src/zencore/include/zencore/parallelwork.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/zencore/include/zencore/parallelwork.h b/src/zencore/include/zencore/parallelwork.h
index 05146d644..138d0bc7c 100644
--- a/src/zencore/include/zencore/parallelwork.h
+++ b/src/zencore/include/zencore/parallelwork.h
@@ -44,8 +44,9 @@ public:
},
m_Mode);
}
- catch (const std::exception&)
+ catch (const std::exception& Ex)
{
+ ZEN_WARN("ParallelWork: Failed scheduling work, reason: {}", Ex.what());
m_PendingWork.CountDown();
throw;
}