apengine/apeng/src/ApEngineLogger.cpp
changeset 70 ac5daea24fb0
equal deleted inserted replaced
61:8b0c979bbe8c 70:ac5daea24fb0
       
     1 /*
       
     2 * Copyright (c) 2002 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 *      Implementation of class ApEngineLogger.   
       
    16 *      
       
    17 *
       
    18 */
       
    19 
       
    20 
       
    21 // INCLUDE FILES
       
    22 
       
    23 #ifdef __TEST_APENGINE_LOG__
       
    24 
       
    25     #include "ApEngineLogger.h"
       
    26     #include <flogger.h>
       
    27 
       
    28     // ================= CONSTANTS =======================
       
    29 
       
    30     /// ApEngine logging directory.
       
    31     _LIT( KApEngineLogDir, "ApEngine" );
       
    32     /// ApEngine log file name.
       
    33     _LIT( KApEngineLogFile, "ApEngine.txt" );
       
    34 
       
    35 
       
    36     // ================= MEMBER FUNCTIONS =======================
       
    37 
       
    38     // ---------------------------------------------------------
       
    39     // ApEngineLogger::Write()
       
    40     // ---------------------------------------------------------
       
    41     //
       
    42     void ApEngineLogger::Write
       
    43     ( TInt32 aMask, TInt aLevel, TRefByValue<const TDesC16> aFmt, ... )
       
    44         {
       
    45         }
       
    46 
       
    47 
       
    48     // ---------------------------------------------------------
       
    49     // ApEngineLogger::Write()
       
    50     // ---------------------------------------------------------
       
    51     //
       
    52     void ApEngineLogger::Write
       
    53     ( TInt32 aMask, TInt aLevel, 
       
    54       TRefByValue<const TDesC16> aFmt, 
       
    55       VA_LIST& aList )
       
    56         {
       
    57         }
       
    58 
       
    59 
       
    60     // ---------------------------------------------------------
       
    61     // ApEngineLogger::Write()
       
    62     // ---------------------------------------------------------
       
    63     //
       
    64     void ApEngineLogger::Write
       
    65     ( TInt32 aMask, TInt aLevel, TRefByValue<const TDesC8> aFmt, ... )
       
    66         {
       
    67         }
       
    68 
       
    69 
       
    70     // ---------------------------------------------------------
       
    71     // ApEngineLogger::Write()
       
    72     // ---------------------------------------------------------
       
    73     //
       
    74     void ApEngineLogger::Write
       
    75     ( TInt32 aMask, TInt aLevel, 
       
    76       TRefByValue<const TDesC8> aFmt, VA_LIST& aList )
       
    77         {
       
    78         }
       
    79 
       
    80 
       
    81     // ---------------------------------------------------------
       
    82     // ApEngineLogger::HexDump()
       
    83     // ---------------------------------------------------------
       
    84     //
       
    85     void ApEngineLogger::HexDump
       
    86             (
       
    87             TInt32 aMask,
       
    88             TInt aLevel, 
       
    89             const TText* aHeader,
       
    90             const TText* aMargin,
       
    91             const TUint8* aPtr,
       
    92             TInt aLen
       
    93             )
       
    94         {
       
    95         }
       
    96 #endif // __TEST_APENGINE_LOG__