First public contribution.
1 // Copyright (c) 2004-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 "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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 This class manages the logging of error messages to the log engine.
25 It allows several messages to be able to be logged at the same time
26 by performing some simple queuing.
28 NONSHARABLE_CLASS(CSchLogManager) : public CActive
32 static CSchLogManager* NewL(RFs& aFileSession);
35 CLogWrapper* GetLogWrapperL();
37 void ConstructL(RFs& aFileSession);
43 void LogError(const TDesC& aSubject, TInt aError);
44 void LogError(TInt aError);
49 CLogWrapper* iLogWrapper;
50 CArrayPtrFlat<CLogEvent>* iPendingLogEvents;