locationsystemui/locationsysui/locbtnotifier/src/locbtnotifierdebug.cpp
branchRCL_3
changeset 13 19bff11d6c18
parent 0 667063e416a2
equal deleted inserted replaced
12:f3bd2a0973b9 13:19bff11d6c18
    46 // Generates a log file if c:\logs\locbtnotifier\ folder exists
    46 // Generates a log file if c:\logs\locbtnotifier\ folder exists
    47 // -----------------------------------------------------------------------------
    47 // -----------------------------------------------------------------------------
    48 //
    48 //
    49  void DebugLocBtNotifier( TRefByValue<const TDesC> aText, ... )
    49  void DebugLocBtNotifier( TRefByValue<const TDesC> aText, ... )
    50     {    
    50     {    
       
    51     // coverity[var_decl : FALSE]
    51     VA_LIST args;
    52     VA_LIST args;
    52     VA_START( args, aText );
    53     VA_START( args, aText );
    53     
    54     
    54     TBuf<KLogLineLength> buf;
    55     TBuf<KLogLineLength> buf;
       
    56     // coverity[uninit_use_in_call : FALSE]
    55     buf.FormatList( aText, args );
    57     buf.FormatList( aText, args );
    56 
    58 
    57     #ifdef _DEBUG
    59     #ifdef _DEBUG
    58     RDebug::Print(buf);
    60     RDebug::Print(buf);
    59     #endif
    61     #endif