diff options
Diffstat (limited to 'src/netcomputer.cpp')
-rw-r--r-- | src/netcomputer.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/netcomputer.cpp b/src/netcomputer.cpp index bce31788..1c3c50b6 100644 --- a/src/netcomputer.cpp +++ b/src/netcomputer.cpp @@ -49,7 +49,8 @@ void NetComputer::disconnect(const std::string &reason) void NetComputer::send(const MessageOut &msg) { - LOG_INFO("Sending packet of length " << msg.getDataSize(), 2); + LOG_INFO("Sending packet of length " << msg.getDataSize() << " to " + << ip4ToString(mPeer->address.host), 2); // Create a reliable packet. ENetPacket *packet = enet_packet_create(msg.getData(), msg.getDataSize(), |