ZMQ: fixed bind port error message

pull/279/head
SChernykh 2023-09-26 19:35:30 +02:00
parent b922440fc7
commit a81d3c4989
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ ZMQReader::ZMQReader(const std::string& address, uint32_t zmq_port, const std::s
break;
}
catch (const std::exception& e) {
LOGWARN(1, "failed to to bind port " << i << " for ZMQ publisher, error " << e.what());
LOGWARN(1, "failed to to bind port " << port << " for ZMQ publisher, error " << e.what());
}
}