userlibandfileserver/fileserver/shostmassstorage/server/protocol/tspcclientinterface.cpp
changeset 297 b2826f67641f
parent 33 0173bcd7697c
--- a/userlibandfileserver/fileserver/shostmassstorage/server/protocol/tspcclientinterface.cpp	Tue Oct 26 11:12:58 2010 +0100
+++ b/userlibandfileserver/fileserver/shostmassstorage/server/protocol/tspcclientinterface.cpp	Tue Oct 26 12:49:20 2010 +0100
@@ -1,4 +1,4 @@
-// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
+// Copyright (c) 2008-2010 Nokia Corporation and/or its subsidiary(-ies).
 // All rights reserved.
 // This component and the accompanying materials are made available
 // under the terms of the License "Eclipse Public License v1.0"
@@ -19,8 +19,11 @@
 */
 
 #include <e32base.h>
-#include "debug.h"
-#include "msdebug.h"
+
+#include "OstTraceDefinitions.h"
+#ifdef OST_TRACE_COMPILER_IN_USE
+#include "tspcclientinterfaceTraces.h"
+#endif
 
 #include "msctypes.h"
 #include "mtransport.h"
@@ -40,7 +43,6 @@
 TSpcClientInterface::TSpcClientInterface(MTransport& aTransport)
 :   iTransport(aTransport)
     {
-	__MSFNLOG
     }
 
 /**
@@ -48,7 +50,6 @@
 */
 TSpcClientInterface::~TSpcClientInterface()
     {
-	__MSFNLOG
     }
 
 /**
@@ -63,13 +64,12 @@
 */
 TInt TSpcClientInterface::InquiryL(TPeripheralInfo& aInfo)
     {
-	__MSFNLOG
     TScsiClientInquiryReq inquiryReq;
 
     TScsiClientInquiryResp inquiryResp(aInfo);
 
     TInt err = iTransport.SendControlCmdL(&inquiryReq, &inquiryResp);
-	return err;
+    return err;
     }
 
 
@@ -85,17 +85,19 @@
 */
 TInt TSpcClientInterface::RequestSenseL(TSenseInfo& aSenseInfo)
     {
-	__MSFNLOG
     TScsiClientRequestSenseReq requestSenseReq;
     TScsiClientRequestSenseResp requestSenseResp;
 
     TInt err = iTransport.SendControlCmdL(&requestSenseReq, &requestSenseResp);
     aSenseInfo = requestSenseResp.iSenseInfo;
 
-    __SCSIPRINT4(_L("SCSI SENSE INFO Response%08x Code=%08x, Qual=%08x Add=%08x"),
-                 requestSenseResp.iResponseCode,
-                 aSenseInfo.iSenseCode, aSenseInfo.iQualifier, aSenseInfo.iAdditional);
-	return err;
+    OstTraceExt2(TRACE_SHOSTMASSSTORAGE_SCSI, TSPCCLIENTINTERFACE_10,
+                 "SCSI SENSE INFO Response %x Code=%x",
+                 (TUint32)requestSenseResp.iResponseCode, (TUint32)aSenseInfo.iSenseCode);
+    OstTraceExt2(TRACE_SHOSTMASSSTORAGE_SCSI, TSPCCLIENTINTERFACE_11,
+                 "                Qual=%08x Add=%08x",
+                 (TUint32)aSenseInfo.iQualifier, (TUint32)aSenseInfo.iAdditional);
+    return err;
     }
 
 
@@ -109,11 +111,10 @@
 */
 TInt TSpcClientInterface::TestUnitReadyL()
     {
-	__MSFNLOG
     TScsiClientTestUnitReadyReq testUnitReadyReq;
 
     TInt err = iTransport.SendControlCmdL(&testUnitReadyReq);
-	return err;
+    return err;
     }
 
 
@@ -129,10 +130,9 @@
 */
 TInt TSpcClientInterface::PreventAllowMediumRemovalL(TBool aPrevent)
     {
-	__MSFNLOG
     TScsiClientPreventMediaRemovalReq preventAllowMediaRemovalReq(aPrevent);
     TInt err = iTransport.SendControlCmdL(&preventAllowMediaRemovalReq);
-	return err;
+    return err;
     }