diff -r f2101057ffeb -r 9360ca28b668 devicediagnostics/diagplugins/diagbrowserplugin/src/diagbrowserpluginmodel.cpp --- a/devicediagnostics/diagplugins/diagbrowserplugin/src/diagbrowserpluginmodel.cpp Mon Jun 21 15:26:00 2010 +0300 +++ b/devicediagnostics/diagplugins/diagbrowserplugin/src/diagbrowserpluginmodel.cpp Thu Jul 15 18:24:21 2010 +0300 @@ -702,12 +702,14 @@ // --------------------------------------------------------------------------- TInt CDiagBrowserPluginModel::RunError( TInt aError ) { - LOGSTRING2( "CDiagBrowserPluginModel::RunError( %d )", aError ) + LOGSTRING2( "CDiagBrowserPluginModel::RunError aError( %d )", aError ) // Try to continue test execution by retrying the secondary connection. //TRAPD( error, RetryConnectionL() ); //return error; - HandleTestEndL( CDiagResultsDatabaseItem::EFailed ); + TInt err(KErrNone); + TRAP( err, HandleTestEndL( CDiagResultsDatabaseItem::EFailed )); + LOGSTRING2( "CDiagBrowserPluginModel::RunError err( %d )", err ) return KErrNone; }