datacommsserver/esockserver/test/te_mecunittest/src/mecunittestdummyesocklog.cpp
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 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".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 // mecunittestdummyesocklog.cpp
       
    16 //
       
    17 
       
    18 /**
       
    19 @file
       
    20 Dummy ESock logging stubs to satisfy linker
       
    21 */
       
    22 
       
    23 #ifdef _DEBUG
       
    24 
       
    25 #include <comms-infras/ss_log.h>
       
    26 
       
    27 void ESockLog::Printf(TRefByValue<const TDesC8> aFmt,...)
       
    28     {
       
    29     (void)aFmt;
       
    30     }
       
    31 
       
    32 void ESockLog::Printf(TRefByValue<const TDesC> aFmt,...)
       
    33     {
       
    34     (void)aFmt;
       
    35     }
       
    36 
       
    37 void ESockLog::Printf(const TDesC8& aSubTag, TRefByValue<const TDesC8> aFmt, ...)
       
    38     {
       
    39     (void)aSubTag;
       
    40     (void)aFmt;
       
    41     }
       
    42 
       
    43 void ESockLog::Printf(const TDesC8& aSubTag, TRefByValue<const TDesC> aFmt, ...)
       
    44     {
       
    45     (void)aSubTag;
       
    46     (void)aFmt;
       
    47     }
       
    48 
       
    49 #endif
       
    50