First public contribution.
2 * Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "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.
33 const TInt KFLogSrvMajorVersionNumber=1;
36 Log Server Minor Version Number.
38 const TInt KFLogSrvMinorVersionNumber=0;
41 Log Server Build Version Number.
43 const TInt KFLogSrvBuildVersionNumber=20;
46 Shut down pause time 5secs.
49 const TInt KShutdownPause=5000000;
55 const TText KFullStopChar='.';
58 File logger server name in EKA2.
61 _LIT(KFLoggerServerName,"!FLogger server");
67 enum TFileLoggerOperations
69 /** const to create a new log file. */
72 /** const to write the log file. */
75 /** const to close the log file. */
78 /** const for create,write and to close the log file. */
79 ECreateWriteAndCloseLog
83 NONSHARABLE_CLASS(CFLoggerScheduler) : public CActiveScheduler
93 inline CFLoggerScheduler() {}
98 void Error(TInt aError) const;
101 CFileLoggerServer* iServer;
104 #endif // __FLOGSTD_H__