summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/inspircd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 5497c54e0..26fe3096d 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -6842,10 +6842,10 @@ void handle_link_packet(char* udp_msg, char* udp_host, serverrec *serv)
{
for (int x = 0; x < servers[j]->connectors.size(); x++)
{
- log("Servers are: '%s' '%s'",udp_host,servers[j]->connectors[x].GetServerName().c_str());
+ log(DEBUG,"Servers are: '%s' '%s'",udp_host,servers[j]->connectors[x].GetServerName().c_str());
if (!strcasecmp(servers[j]->connectors[x].GetServerName().c_str(),udp_host))
{
- log("match! process restricted stuff here");
+ log(DEBUG,"match! process restricted stuff here");
// found a valid ircd_connector.
// TODO: Fix this so it only lets servers in that are in the
// STATE_CONNECTED state!!!