diff options
| author | 2013-08-04 12:33:30 +0200 | |
|---|---|---|
| committer | 2013-08-04 12:33:30 +0200 | |
| commit | 38eb845f7a98a3140adcdc108abf2adab82b87c0 (patch) | |
| tree | f33142985c3f08f513b943b0e8eb789427875b10 /src/modules/m_xline_db.cpp | |
| parent | Merge pull request #596 from SaberUK/master+genssl-auto (diff) | |
Remove a few not-so-useful debug messages
Diffstat (limited to 'src/modules/m_xline_db.cpp')
| -rw-r--r-- | src/modules/m_xline_db.cpp | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/modules/m_xline_db.cpp b/src/modules/m_xline_db.cpp index 377634a75..c8206528a 100644 --- a/src/modules/m_xline_db.cpp +++ b/src/modules/m_xline_db.cpp @@ -188,11 +188,7 @@ class ModuleXLineDB : public Module if (command_p[0] == "VERSION") { - if (command_p[1] == "1") - { - ServerInstance->Logs->Log("m_xline_db", LOG_DEBUG, "xlinedb: Reading db version %s", command_p[1].c_str()); - } - else + if (command_p[1] != "1") { stream.close(); ServerInstance->Logs->Log("m_xline_db", LOG_DEBUG, "xlinedb: I got database version %s - I don't understand it", command_p[1].c_str()); |
