added logging

This commit is contained in:
Neeflix
2018-05-31 20:26:37 +02:00
parent 953f90d6a6
commit 010415c4ae

View File

@@ -38,7 +38,10 @@ public:
}
// This function is intended to be non pure, if it is called when the derived class doesn't exist anymore
virtual void handle(Event& event);
virtual void handle(Event& event)
{
CLOG(WARNING, INPUT_LOGGER) << "Called EventHandler parent class";
}
private:
std::shared_ptr<InputDriver> input_driver;