added logging

This commit is contained in:
Neeflix
2018-05-31 20:25:06 +02:00
parent 4c593c9d29
commit b9328855c8
6 changed files with 21 additions and 2 deletions

View File

@@ -5,6 +5,9 @@
* Author: Andreas Schneider, Johannes Wendel, Jonas Zeunert, Rafael Vinci, Dr. Franca Rupprecht
*/
#include "../utilities/config.h"
#ifndef SRC_INPUT_INPUTDRIVER_HPP_
#define SRC_INPUT_INPUTDRIVER_HPP_
@@ -23,7 +26,9 @@ class InputDriver
public:
InputDriver(EventNotifier* event_notifier) :
event_notifier(event_notifier)
{}
{
CLOG(INFO, INPUT_LOGGER) << "Created InputDriver";
}
~InputDriver()
{