equal
deleted
inserted
replaced
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 } |
|