aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_ident.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-08-04 12:33:30 +0200
committerGravatar attilamolnar2013-08-04 12:33:30 +0200
commit38eb845f7a98a3140adcdc108abf2adab82b87c0 (patch)
treef33142985c3f08f513b943b0e8eb789427875b10 /src/modules/m_ident.cpp
parentMerge pull request #596 from SaberUK/master+genssl-auto (diff)
downloadinspircd++-38eb845f7a98a3140adcdc108abf2adab82b87c0.tar.gz
inspircd++-38eb845f7a98a3140adcdc108abf2adab82b87c0.tar.bz2
inspircd++-38eb845f7a98a3140adcdc108abf2adab82b87c0.zip
Remove a few not-so-useful debug messages
Diffstat (limited to 'src/modules/m_ident.cpp')
-rw-r--r--src/modules/m_ident.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/modules/m_ident.cpp b/src/modules/m_ident.cpp
index 737d47b52..e925f7ab4 100644
--- a/src/modules/m_ident.cpp
+++ b/src/modules/m_ident.cpp
@@ -327,12 +327,7 @@ class ModuleIdent : public Module
/* Does user have an ident socket attached at all? */
IdentRequestSocket *isock = ext.get(user);
if (!isock)
- {
- ServerInstance->Logs->Log("m_ident", LOG_DEBUG, "No ident socket :(");
return MOD_RES_PASSTHRU;
- }
-
- ServerInstance->Logs->Log("m_ident", LOG_DEBUG, "Has ident_socket");
time_t compare = isock->age;
compare += RequestTimeout;
@@ -342,17 +337,13 @@ class ModuleIdent : public Module
{
/* Ident timeout */
user->WriteNotice("*** Ident request timed out.");
- ServerInstance->Logs->Log("m_ident", LOG_DEBUG, "Timeout");
}
else if (!isock->HasResult())
{
// time still good, no result yet... hold the registration
- ServerInstance->Logs->Log("m_ident", LOG_DEBUG, "No result yet");
return MOD_RES_DENY;
}
- ServerInstance->Logs->Log("m_ident", LOG_DEBUG, "Yay, result!");
-
/* wooo, got a result (it will be good, or bad) */
if (isock->result.empty())
{