datacommsserver/esockserver/ssock/ss_connLegacy.cpp
changeset 4 928ed51ddc43
parent 0 dfb7c4ff071f
child 12 8b5d60ce1e94
--- a/datacommsserver/esockserver/ssock/ss_connLegacy.cpp	Fri Jan 22 10:58:59 2010 +0200
+++ b/datacommsserver/esockserver/ssock/ss_connLegacy.cpp	Tue Jan 26 13:09:14 2010 +0200
@@ -353,13 +353,11 @@
 
 void AConnectionLegacy::CompleteAllInterfaceNotificationL(TInt aError)
 	{
-	LOG(ESockLog::Printf(KESockConnectionTag, _L8("AConnectionLegacy [this=%08x] CompleteAllInterfaceNotificationL message (%08X) with %d"), &iConnection, iAllInterfaceNotificationMessage.Handle(), aError));
-
-	if(!iAllInterfaceNotificationMessage.IsNull())
+	if (!iAllInterfaceNotificationMessage.IsNull())
 		{
 		if(aError == KErrNone)
 			{
-			if(!iNotificationQueue.IsEmpty())
+			if (!iNotificationQueue.IsEmpty())
 				{
 				TInterfaceNotification notification;
 				iNotificationQueue.Deque(notification);
@@ -368,12 +366,14 @@
 
 				// Write the buffer to the client
 				iAllInterfaceNotificationMessage.WriteL(0, buf);
+			    LOG(ESockLog::Printf(KESockConnectionTag, _L8("AConnectionLegacy [this=%08x] CompleteAllInterfaceNotificationL, RMessage2::Complete (%08x) with 0"), &iConnection, iAllInterfaceNotificationMessage.Handle()));
 				iAllInterfaceNotificationMessage.Complete(KErrNone);
 				iAllInterfaceNotificationMessage = RMessage2();
 				}
 			}
 		else
 			{
+            LOG(ESockLog::Printf(KESockConnectionTag, _L8("AConnectionLegacy [this=%08x] CompleteAllInterfaceNotificationL, RMessage2::Complete (%08x) with %d"), &iConnection, iAllInterfaceNotificationMessage.Handle(), aError));
 			iAllInterfaceNotificationMessage.Complete(aError);
 			iAllInterfaceNotificationMessage = RMessage2();
 			}