Update contrib.
2 * Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
26 // Very simple logging code. This will thrash the file server by
27 // creating a new session to it for every line. Create the file
28 // c:\logs\ct.txt to turn on logging.
29 EXPORT_C void SLogger::Log(const TDesC& aLogFileName, const TDesC& aString,
30 const TDesC8& aSourceFileName, TInt aLineNumber)
32 // Open the file server and file
36 TInt error = file.Open(fs, aLogFileName, EFileWrite|EFileShareAny);
37 // If the file doesn't exist, exit
38 if (error != KErrNone)
43 // Seek to the end of the file
45 file.Seek(ESeekEnd, tmp);
47 // And do some logging
48 // Name of the file where the Log function was called
49 file.Write(aSourceFileName);
50 // Number of the line where the Log function was called
51 _LIT8(KLineNumber, ",%d:");
53 buf.Format(KLineNumber, aLineNumber);
65 EXPORT_C void SLogger::Log(const TDesC& aLogFileName, TInt aInt,
66 const TDesC8& aSourceFileName, TInt aLineNumber)
70 Log(aLogFileName, str, aSourceFileName, aLineNumber);