aboutsummaryrefslogtreecommitdiff
path: root/lib/events/event.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/events/event.cpp')
-rw-r--r--lib/events/event.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/events/event.cpp b/lib/events/event.cpp
index 96be717c..715e7da2 100644
--- a/lib/events/event.cpp
+++ b/lib/events/event.cpp
@@ -27,6 +27,14 @@ QString EventTypeRegistry::getMatrixType(event_type_t typeId)
: QString();
}
+void _impl::EventFactoryBase::logAddingMethod(event_mtype_t matrixType,
+ size_t newSize)
+{
+ qDebug(EVENTS) << "Adding factory method for" << matrixType << "events;"
+ << newSize << "methods will be in the" << name
+ << "chain";
+}
+
Event::Event(Type type, const QJsonObject& json) : _type(type), _json(json)
{
if (!json.contains(ContentKeyL)