Adding some Log messages

This commit is contained in:
Johannes Wendel
2019-12-20 14:24:06 +01:00
parent 8d4efaa463
commit b70866b5b0
9 changed files with 16 additions and 13 deletions

View File

@@ -18,7 +18,7 @@ namespace input
Event::Event(uint8_t address, int priority, std::string name) :
address(address), priority(priority), name(name)
{
CLOG_IF(VLOG_IS_ON(0), INFO, INPUT_LOGGER) << "Created event: " << name << ", address: " << address;
//CLOG_IF(VLOG_IS_ON(0), INFO, INPUT_LOGGER) << "Created event: " << name << ", address: " << address;
}
std::string Event::getJsonString()