diff -r 7d4490026038 -r 44f437012c90 persistentstorage/store/TSTOR/t_storstrm.cpp --- a/persistentstorage/store/TSTOR/t_storstrm.cpp Mon Sep 27 11:59:56 2010 +0100 +++ b/persistentstorage/store/TSTOR/t_storstrm.cpp Tue Oct 19 16:26:13 2010 +0100 @@ -1,4 +1,4 @@ -// Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies). +// Copyright (c) 1998-2010 Nokia Corporation and/or its subsidiary(-ies). // All rights reserved. // This component and the accompanying materials are made available // under the terms of "Eclipse Public License v1.0" @@ -317,23 +317,23 @@ TEntry entry; if(fsSession.Entry(aFullName, entry) == KErrNone) { - RDebug::Print(_L("Deleting \"%S\" file.\n"), &aFullName); + test.Printf(_L("Deleting \"%S\" file.\n"), &aFullName); err = fsSession.SetAtt(aFullName, 0, KEntryAttReadOnly); if(err != KErrNone) { - RDebug::Print(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName); + test.Printf(_L("Error %d changing \"%S\" file attributes.\n"), err, &aFullName); } err = fsSession.Delete(aFullName); if(err != KErrNone) { - RDebug::Print(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName); + test.Printf(_L("Error %d deleting \"%S\" file.\n"), err, &aFullName); } } fsSession.Close(); } else { - RDebug::Print(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName); + test.Printf(_L("Error %d connecting file session. File: %S.\n"), err, &aFullName); } }