--- a/engine/src/HttpEventHandler.cpp Wed Jul 07 10:29:00 2010 +0100
+++ b/engine/src/HttpEventHandler.cpp Wed Jul 07 14:10:58 2010 +0100
@@ -114,7 +114,7 @@
TInt err = iRespBodyFile.Open(iFileServ, iParsedFileName.FullName(),EFileWrite);
if (err)
{
- DP2("There was an error opening file '%S', err=%d", &iParsedFileName.FullName(), err);
+ DP2("There was an error=%d opening file '%S'", err, &iParsedFileName.FullName());
iSavingResponseBody = EFalse;
iHttpClient->ClientRequestCompleteL(KErrInUse);
User::Leave(err);
@@ -242,6 +242,7 @@
void CHttpEventHandler::SetSaveFileName(const TDesC &fName, TBool aContinue)
{
+ DP1("CHttpEventHandler::SetSaveFileName, aContinue=%d", aContinue);
iFileName.Copy(fName);
iContinue = aContinue;
}