aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/imap/MCIMAPAsyncConnection.cc
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-06-26 03:31:08 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2013-06-26 03:31:08 -0700
commit1b7e875e49b5dbac686587bde3158eec56600f91 (patch)
treeb110c45ac48048b78cfc359bb2ebab0dbc621895 /src/async/imap/MCIMAPAsyncConnection.cc
parentb17b5d9ebf687241f177c562f7db96f7e5e637cb (diff)
Simplified logger C++ API
Diffstat (limited to 'src/async/imap/MCIMAPAsyncConnection.cc')
-rw-r--r--src/async/imap/MCIMAPAsyncConnection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/async/imap/MCIMAPAsyncConnection.cc b/src/async/imap/MCIMAPAsyncConnection.cc
index 5753726a..232b343a 100644
--- a/src/async/imap/MCIMAPAsyncConnection.cc
+++ b/src/async/imap/MCIMAPAsyncConnection.cc
@@ -578,7 +578,7 @@ void IMAPAsyncConnection::logConnection(ConnectionLogType logType, Data * buffer
{
pthread_mutex_lock(&mConnectionLoggerLock);
if (mConnectionLogger != NULL) {
- mConnectionLogger->log(mConnectionLogger->context(), this, logType, buffer);
+ mConnectionLogger->log(this, logType, buffer);
}
pthread_mutex_unlock(&mConnectionLoggerLock);
}