diff -r 8d540f55e491 -r 425d8f4f7fa5 networksecurity/tls/protocol/tlsconnection.cpp --- a/networksecurity/tls/protocol/tlsconnection.cpp Wed Sep 01 12:33:58 2010 +0100 +++ b/networksecurity/tls/protocol/tlsconnection.cpp Wed Sep 15 00:18:51 2010 +0300 @@ -1238,6 +1238,7 @@ __ASSERT_DEBUG( !aStateMachine->SuspendRequest(), TlsPanic(ETlsPanicStateMachineStopped) ); if ( aStateMachine->LastError() != KErrNone ) {//user will be notified after return from this fn + LOG(Log::Printf(_L("CTlsConnection::OnCompletion() aStateMachine->LastError() %d"), aStateMachine->LastError() );) if ( iHandshake != aStateMachine ) { return EFalse; @@ -1263,6 +1264,7 @@ {//something went completely wrong //set last error so that the user will be notified after return from this fn aStateMachine->SetLastError( ret ); + LOG(Log::Printf(_L("CTlsConnection::OnCompletion() - AppData->ResumeL Last Error %d"), aStateMachine->LastError() );) delete iSendAppData; iSendAppData = NULL; delete iRecvAppData; @@ -1287,6 +1289,7 @@ // Create the Data state machines so that the user can send/receive data __ASSERT_DEBUG( !iRecvAppData && !iSendAppData, TlsPanic(ETlsPanicStateMachineAlreadyExists)); + LOG(Log::Printf(_L(" Create the Data state machines so that the user can send/receive data") );) //don't change the order see CRecvAppData::ResumeL TRAPD( ret, iSendAppData = CSendAppData::NewL( *iRecordComposer ); iRecvAppData = CRecvAppData::NewL( *this ) ); @@ -1294,6 +1297,7 @@ {//something went completely wrong //set last error so that the user will be notified after return from this fn aStateMachine->SetLastError( ret ); + LOG(Log::Printf(_L("CTlsConnection::OnCompletion() AppData::NewL Last Error %d"), aStateMachine->LastError() );) //delete what may have been created delete iRecvAppData; iRecvAppData = 0;