aboutsummaryrefslogtreecommitdiff
path: root/src/connections.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/connections.cc')
-rw-r--r--src/connections.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/connections.cc b/src/connections.cc
index 5fd885f..ac5d4ca 100644
--- a/src/connections.cc
+++ b/src/connections.cc
@@ -265,8 +265,8 @@ void ProcessConnections(void){
}
if(AssignConnection(Socket, Addr, Port) == NULL){
- LOG_ERR("Rejecting connection from %08X due to max number of"
- " connections being reached (%d)", Addr, g_MaxConnections);
+ LOG_ERR("Rejecting connection from %08X:%d due to max number of"
+ " connections being reached (%d)", Addr, Port, g_MaxConnections);
close(Socket);
}
}