os/kernelhwsrv/userlibandfileserver/fileserver/shostmassstorage/server/shared/msdebug.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of the License "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @internalTechnology
    19 */
    20 
    21 #include "msdebug.h"
    22 
    23 #ifdef MSFN_TRACE_ENABLED
    24 
    25 _LIT8(KFnMsgSIn, ">>\t%S\r\n");
    26 _LIT8(KFnMsgSOut,"<<\t%S\r\n");
    27 _LIT8(KFnMsgIn, ">>[0x%08x]\t%S\r\n");
    28 _LIT8(KFnMsgOut,"<<[0x%08x]\t%S\r\n");
    29 
    30 TMsLogStaticFn::TMsLogStaticFn(const TDesC8& aFunctionName)
    31     {
    32     iFunctionName.Set(aFunctionName);
    33     buf.AppendFormat(KFnMsgSIn, &iFunctionName);
    34     RDebug::RawPrint(buf);
    35     };
    36 
    37 
    38 TMsLogStaticFn::~TMsLogStaticFn()
    39     {
    40     buf.Zero();
    41     buf.AppendFormat(KFnMsgSOut, &iFunctionName);
    42     RDebug::RawPrint(buf);
    43     };
    44 
    45 
    46 TMsLogFn::TMsLogFn(const TDesC8& aFunctionName, void* aThisPointer)
    47 :   iThisPointer(aThisPointer)
    48     {
    49     iFunctionName.Set(aFunctionName);
    50     buf.AppendFormat(KFnMsgIn, iThisPointer, &iFunctionName);
    51     RDebug::RawPrint(buf);
    52     };
    53 
    54 
    55 TMsLogFn::~TMsLogFn()
    56     {
    57     buf.Zero();
    58     buf.AppendFormat(KFnMsgOut, iThisPointer, &iFunctionName);
    59     RDebug::RawPrint(buf);
    60     };
    61 
    62 #endif