Fix formatting of mac address in error log

This commit is contained in:
B3n30 2018-03-13 10:49:16 +01:00
parent 6c63bb11d9
commit b6d52f0299

View file

@ -16,22 +16,6 @@
namespace Network { namespace Network {
std::string MacAddressToString(const MacAddress& address) {
std::stringstream result;
bool is_start = true;
for (const auto& octal : address) {
if (!is_start) {
result << ":";
}
result << std::hex << octal;
is_start = false;
}
return result.str();
}
class Room::RoomImpl { class Room::RoomImpl {
public: public:
// This MAC address is used to generate a 'Nintendo' like Mac address. // This MAC address is used to generate a 'Nintendo' like Mac address.
@ -424,9 +408,10 @@ void Room::RoomImpl::HandleWifiPacket(const ENetEvent* event) {
if (member != members.end()) { if (member != members.end()) {
enet_peer_send(member->peer, 0, enet_packet); enet_peer_send(member->peer, 0, enet_packet);
} else { } else {
std::string formatted_address = MacAddressToString(destination_address); LOG_ERROR(Network,
LOG_ERROR(Network, "Attempting to send to unknown MAC address: %s", "Attempting to send to unknown MAC address: %02X:%02X:%02X:%02X:%02X:%02X",
formatted_address.c_str()); destination_address[0], destination_address[1], destination_address[2],
destination_address[3], destination_address[4], destination_address[5]);
enet_packet_destroy(enet_packet); enet_packet_destroy(enet_packet);
} }
} }