summaryrefslogtreecommitdiffstats
path: root/src/uscxml/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/plugins')
-rw-r--r--src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp b/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
index 00b47f4..9ba3e63 100644
--- a/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
+++ b/src/uscxml/plugins/ioprocessor/scxml/SCXMLIOProcessor.cpp
@@ -162,6 +162,8 @@ void SCXMLIOProcessor::send(const SendRequest& req) {
} catch(Event e) {
// Is this the right thing to do?
_interpreter->receive(e);
+ } catch (const std::exception &e) {
+ LOG(ERROR) << "Exception caught while sending event to invoker " << invokeId << ": " << e.what();
} catch(...) {
LOG(ERROR) << "Exception caught while sending event to invoker " << invokeId;
}