diff -r 3a25f69541ff -r 4721bd00d3da locationcentre/lcutils/src/lcdebug.cpp --- a/locationcentre/lcutils/src/lcdebug.cpp Wed Apr 14 15:50:30 2010 +0300 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,75 +0,0 @@ -/* -* Copyright (c) Nokia Corporation and/or its subsidiary(-ies). -* All rights reserved. -* This component and the accompanying materials are made available -* under the terms of "Eclipse Public License v1.0" -* which accompanies this distribution, and is available -* at the URL "http://www.eclipse.org/legal/epl-v10.html". -* -* Initial Contributors: -* Nokia Corporation - initial contribution. -* -* Contributors: -* -* Description: Utility class for Debug traces -* -*/ - - -// INCLUDE FILES -#include "lcdebug.h" -#include -#include - -// ========================== EXPORTED FUNCTIONS ========================= - -#ifdef _LCDEBUG - -/// Folder where the log resides -_LIT( KLogFolder, "Location" ); - -/// The name of the log file -_LIT( KLogFileName, "Location" ); - -/// How many characters a log line can contain -const TInt KLogLineLength = 256; - -// ----------------------------------------------------------------------------- -// void Debug( TRefByValue aText, ... ) -// ----------------------------------------------------------------------------- -// -EXPORT_C void Debug( TRefByValue aText, ... ) - { - RDebug::Print(aText); - - VA_LIST args; - VA_START( args, aText ); - - TBuf buf; - buf.FormatList( aText, args ); - RFileLogger logger; - TInt ret=logger.Connect(); - if (ret==KErrNone) - { - logger.SetDateAndTime( EFalse,EFalse ); - logger.CreateLog( KLogFolder, KLogFileName, EFileLoggingModeAppend ); - logger.Write(buf); - } - logger.Close(); - - VA_END( args ); - } - -#else - -// ----------------------------------------------------------------------------- -// void Debug( TRefByValue aText, ... ) -// ----------------------------------------------------------------------------- -// -EXPORT_C void Debug( TRefByValue /* aText */, ... ) - { - } - -#endif - -// End of File