1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

review: remove comment, change loglevel

Signed-off-by: Pascal Bauer <pascal.bauer@rwth-aachen.de>
This commit is contained in:
Pascal Bauer 2024-10-31 10:42:42 +01:00 committed by Niklas Eiling
parent 62cc7e7331
commit 04a658e4a7

View file

@ -67,11 +67,10 @@ CoreFactory::filterIps(std::list<IpIdentifier> allIps,
const auto &ipName = ip.getName();
if (ignored_ip_set.find(ipName) != ignored_ip_set.end()) {
CoreFactory::getStaticLogger()->warn(
CoreFactory::getStaticLogger()->info(
"Ignoring Ip {} (explicitly on ignorelist)", ipName);
} else {
filteredIps.push_back(
ip); // Or use `filteredIps.emplace_back(std::move(ip));` if moving is preferred.
filteredIps.push_back(ip);
}
}