cellular/SSSettings/Logger/SSSettingsLoggingConf.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2005 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 *        Macro definition file for logging configuration.
       
    16 *       (Note:This file has to be separate from the logging header file 
       
    17 *             to be able to include it in mmp file. If not we will get warning about not used 
       
    18 *             flogger.lib in other logging cases where flogger.lib is not used.)
       
    19 *
       
    20 */
       
    21 
       
    22 
       
    23 
       
    24 #ifndef SSSCONFIGURATION_H
       
    25 #define SSSCONFIGURATION_H
       
    26 
       
    27 
       
    28 #ifdef _DEBUG // logging to file in debug only
       
    29 
       
    30 /**
       
    31 * - Have this line active if you want to have logging for this component
       
    32 * - Comment this line out if you don't want any logging for this component
       
    33 */
       
    34 #define _SSSLOGGING
       
    35 
       
    36 /**
       
    37 * - Have this line active if you want to have logging to file
       
    38 * - Comment this line out if you want to have logging via RDebug::Print 
       
    39 */
       
    40 #define _SSS_LOGGING_TO_FILE
       
    41 
       
    42 #endif // _DEBUG
       
    43 
       
    44 #endif // SSSCONFIGURATION_H