dbgagents/trkagent/toolsstarter/toolsstarterserver/autolaunch/inc/logging.h
changeset 0 c6b0df440bee
equal deleted inserted replaced
-1:000000000000 0:c6b0df440bee
       
     1 /*
       
     2 * Copyright (c) 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 *
       
    16 */
       
    17 
       
    18 #ifndef __LOGGING_H__
       
    19 #define __LOGGING_H__
       
    20 
       
    21 
       
    22 #define _LOGGING_
       
    23 
       
    24 
       
    25 #ifdef _LOGGING_
       
    26 #define LOG_MSG(x) RDebug::Printf(x)
       
    27 #define LOG_MSG2(x, y) RDebug::Printf(x, y)
       
    28 #define LOG_MSG3(x, y, z) RDebug::Printf(x, y, z)
       
    29 #else
       
    30 #define LOG_MSG(x)
       
    31 #define LOG_MSG2(x, y)
       
    32 #define LOG_MSG3(x, y, z)
       
    33 #endif
       
    34 
       
    35 
       
    36 #endif // __LOGGING_H__
       
    37 
       
    38 // End of File
       
    39