hotspotfw/hsserver/inc/am_debug.inl
changeset 61 e1d68407ed06
parent 0 56b72877c1cb
equal deleted inserted replaced
60:822a45792fdd 61:e1d68407ed06
    58     line.Append( buf16 );
    58     line.Append( buf16 );
    59     
    59     
    60     RDebug::Print( line );
    60     RDebug::Print( line );
    61     }
    61     }
    62 
    62 
    63 // -----------------------------------------------------------------------------
       
    64 // Debug::PrintTimestamp
       
    65 // -----------------------------------------------------------------------------
       
    66 //
       
    67 inline void Debug::PrintTimestamp( const TDesC& aString )
       
    68     {
       
    69     TBuf<KPrintLineLength> line;
       
    70     TTime time;
       
    71     time.HomeTime();
       
    72     
       
    73     time.FormatL( line, _L( "%H:%T:%S:%C" ) );
       
    74     line.Append( _L( " " ) );
       
    75     line.Append( aString );
       
    76     
       
    77     RDebug::Print( line );
       
    78     }