aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/async/pop
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/pop
parentb17b5d9ebf687241f177c562f7db96f7e5e637cb (diff)
Simplified logger C++ API
Diffstat (limited to 'src/async/pop')
-rw-r--r--src/async/pop/MCPOPAsyncSession.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/async/pop/MCPOPAsyncSession.cc b/src/async/pop/MCPOPAsyncSession.cc
index d72da0b3..5a49e022 100644
--- a/src/async/pop/MCPOPAsyncSession.cc
+++ b/src/async/pop/MCPOPAsyncSession.cc
@@ -247,7 +247,7 @@ void POPAsyncSession::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);
}