24
|
1 |
/**
|
|
2 |
* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
|
3 |
* All rights reserved.
|
|
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".
|
|
8 |
*
|
|
9 |
* Initial Contributors:
|
|
10 |
* Nokia Corporation - initial contribution.
|
|
11 |
*
|
|
12 |
* Contributors:
|
|
13 |
*
|
|
14 |
* Description:
|
|
15 |
* Netdial Data and Event Logger header.
|
|
16 |
*
|
|
17 |
*
|
|
18 |
*/
|
|
19 |
|
|
20 |
|
|
21 |
|
|
22 |
/**
|
|
23 |
@file Slogger.h
|
|
24 |
@internalComponent
|
|
25 |
*/
|
|
26 |
|
|
27 |
#ifndef __SLOGGER_H__
|
|
28 |
#define __SLOGGER_H__
|
|
29 |
|
|
30 |
#include <comms-infras/commsdebugutility.h>
|
|
31 |
#include <e32base.h>
|
|
32 |
|
|
33 |
/**
|
|
34 |
@internalComponent
|
|
35 |
*/
|
|
36 |
_LIT8(KNetDialLogFile,"NETDIAL.TXT");
|
|
37 |
_LIT8(KNetDialLogFolder,"NETDIAL");
|
|
38 |
|
|
39 |
_LIT(KIllegalTranstionPanicString,"NetDial (%d %d)");
|
|
40 |
_LIT(KCompletedPhaseLogString,"NetDial:\tCompleted Phase '%S' with Error %d");
|
|
41 |
_LIT(KPhaseTransitionLogString,"NetDial:\tPhase Transition from Phase %d to Phase %d");
|
|
42 |
_LIT(KIllegalPhaseTransitionLogString,"NetDial:\tIllegal Phase Transition from Phase %d to Phase %d");
|
|
43 |
_LIT(KStopLogString,"NetDial:\tStopped, Phase %d");
|
|
44 |
_LIT(KServiceStartedLogString,"NetDial:\tService Started");
|
|
45 |
_LIT(KServiceStartedReconnLogString,"NetDial:\tService Started On Reconnection");
|
|
46 |
|
|
47 |
|
|
48 |
#endif // __SLOGGER_H__
|