added pulldown

This commit is contained in:
Jonas Zeunert
2018-09-20 19:54:33 +02:00
parent b3be58d994
commit 7962ff756e
3 changed files with 7 additions and 3 deletions

View File

@@ -16,7 +16,7 @@ namespace Input
Event::Event(char address, int priority, std::string name) :
address(address), priority(priority), name(name)
{
CLOG_IF(VLOG_IS_ON(HIGH_VERBOSITY), INFO, INPUT_LOGGER) << "Created event: " << name << ", address: " << address;
CLOG_IF(VLOG_IS_ON(HIGHEST_LOG_VERBOSITY), INFO, INPUT_LOGGER) << "Created event: " << name << ", address: " << address;
}
bool operator==(const Event& left, const Event& right)