X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fidentserver.cpp;h=5cbb188e7a18462be3f8d310cf26e60aab14b266;hp=bd81e1631e6b373d2eb5b813053d158ee929da43;hb=8c6448c2e0048389fbac9e2e9daf22b5b050d5b6;hpb=696edd3dc076cf52edd8bece9055c2b3ec9086d0 diff --git a/src/core/identserver.cpp b/src/core/identserver.cpp index bd81e163..5cbb188e 100644 --- a/src/core/identserver.cpp +++ b/src/core/identserver.cpp @@ -23,7 +23,6 @@ #include #include "corenetwork.h" -#include "logmessage.h" IdentServer::IdentServer(QObject* parent) : QObject(parent) @@ -38,19 +37,19 @@ bool IdentServer::startListening() bool success = false; if (_v6server.listen(QHostAddress("::1"), port)) { - quInfo() << qPrintable(tr("Listening for identd clients on IPv6 %1 port %2").arg("::1").arg(_v6server.serverPort())); + qInfo() << qPrintable(tr("Listening for identd clients on IPv6 %1 port %2").arg("::1").arg(_v6server.serverPort())); success = true; } if (_server.listen(QHostAddress("127.0.0.1"), port)) { - quInfo() << qPrintable(tr("Listening for identd clients on IPv4 %1 port %2").arg("127.0.0.1").arg(_server.serverPort())); + qInfo() << qPrintable(tr("Listening for identd clients on IPv4 %1 port %2").arg("127.0.0.1").arg(_server.serverPort())); success = true; } if (!success) { - quError() << qPrintable(tr("Identd could not open any network interfaces to listen on! No identd functionality will be available")); + qWarning() << qPrintable(tr("Identd could not open any network interfaces to listen on! No identd functionality will be available")); } return success; @@ -71,9 +70,9 @@ void IdentServer::stopListening(const QString& msg) if (wasListening) { if (msg.isEmpty()) - quInfo() << "No longer listening for identd clients."; + qInfo() << "No longer listening for identd clients."; else - quInfo() << qPrintable(msg); + qInfo() << qPrintable(msg); } }