diff -r 000000000000 -r 522cd55cc3d7 locationcentre/lcutils/src/lcdebug.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/locationcentre/lcutils/src/lcdebug.cpp Tue Feb 02 00:16:03 2010 +0200 @@ -0,0 +1,75 @@ +/* +* 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