diff options
author | Damien Caliste <[email protected]> | 2025-06-25 16:13:18 +0200 |
---|---|---|
committer | Damien Caliste <[email protected]> | 2025-07-04 18:35:22 +0200 |
commit | 6cb917dcef5087503cdb5e610fbf8d480e7fc937 (patch) | |
tree | 676db095a02acdfd0a68d2d02778302e9bccece0 /src/plugins/messageservices | |
parent | f73381b4cdafb04ac240e4141754578f2e08080c (diff) |
Also prefix the send and receive messages with the
account number. It helps when several accounts are
reporting at the same time to follow the actions of
each account.
Change-Id: Ie48bea49219cf451a62a2780f2ba122afb67f5d4
Reviewed-by: Pekka Vuorela <[email protected]>
Diffstat (limited to 'src/plugins/messageservices')
-rw-r--r-- | src/plugins/messageservices/pop/popclient.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/plugins/messageservices/pop/popclient.cpp b/src/plugins/messageservices/pop/popclient.cpp index 34079832..fdc50c4b 100644 --- a/src/plugins/messageservices/pop/popclient.cpp +++ b/src/plugins/messageservices/pop/popclient.cpp @@ -402,6 +402,7 @@ void PopClient::transportError(int status, QString msg) void PopClient::closeConnection() { + qCDebug(lcPOP) << "closing connection, account" << config.id(); inactiveTimer.stop(); if (transport) { @@ -438,7 +439,7 @@ void PopClient::sendCommand(const char *data, int len) logData = logData.left(passExp.matchedLength()) + "<password hidden>"; } - qCDebug(lcPOP) << "SEND:" << logData; + qCDebug(lcPOP) << "[" << config.id() << "]" << "SEND:" << logData; } } @@ -472,7 +473,7 @@ void PopClient::incomingData() void PopClient::processResponse(const QString &response) { if ((response.length() > 1) && (status != MessageDataRetr) && (status != MessageDataTop)) { - qCDebug(lcPOP) << "RECV:" << qPrintable(response.left(response.length() - 2)); + qCDebug(lcPOP) << "[" << config.id() << "]" << "RECV:" << qPrintable(response.left(response.length() - 2)); } bool waitForInput = false; @@ -744,6 +745,7 @@ void PopClient::nextAction() } case Connected: { + qCDebug(lcPOP) << "connected, checking credentials status" << credentials->status(); if (credentials->status() == QMailCredentialsInterface::Ready) { emit updateStatus(tr("Logging in")); @@ -961,6 +963,7 @@ void PopClient::nextAction() } case Quit: { + qCDebug(lcPOP) << "[" << config.id() << "]" << "logging out."; emit updateStatus(tr("Logging out")); nextStatus = Exit; nextCommand = "QUIT"; @@ -1294,6 +1297,7 @@ void PopClient::deactivateConnection() { const int inactivityPeriod = 20 * 1000; + qCDebug(lcPOP) << "starting inactivity timer for account" << config.id(); inactiveTimer.start(inactivityPeriod); selected = false; } |