basiclocationinfodisplay/blid/engine/src/Debug.cpp
branchRCL_3
changeset 17 1fc85118c3ae
parent 16 8173571d354e
child 18 870918037e16
--- a/basiclocationinfodisplay/blid/engine/src/Debug.cpp	Thu Aug 19 09:48:36 2010 +0300
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,88 +0,0 @@
-/*
-* Copyright (c) 2002 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:  Contains debugging functions
-*
-*/
-
-
-
-// INCLUDE FILES
-#include "Debug.h"
-#include <flogger.h>
-#include <e32svr.h>
-
-// CONSTANTS
-#ifdef _DEBUG
-/// Folder where the log resides
-_LIT( KLogFolder, "BLID" );
-
-/// The name of the log file
-_LIT( KLogFileName, "BLID" );
-
-/// The format in which the time is formatted in log
-_LIT( KLogTimeFormat, "%02d.%02d:%02d:%06d ");
-
-/// The length of the string produced by KLocLogTimeFormat
-const TInt KLogTimeFormatLength = 16;
-
-/// How many characters a log line can contain
-const TInt KLogLineLength = 256;
-
-// ========================== OTHER EXPORTED FUNCTIONS =========================
-
-
-// -----------------------------------------------------------------------------
-// Debug
-// Generates a log file if c:\logs\BLID\ folder exists
-// -----------------------------------------------------------------------------
-//
-void Debug( TRefByValue<const TDesC> aText, ... )
-    {
-  
-    RDebug::Print(aText);
-
-    VA_LIST args;
-    VA_START( args, aText );
-
-    TBuf<KLogLineLength> buf;
-    buf.FormatList( aText, args );
-
-    RFileLogger logger;
-    TInt ret=logger.Connect();
-    if (ret==KErrNone)
-        {
-        logger.SetDateAndTime( EFalse,EFalse );
-        logger.CreateLog( KLogFolder, KLogFileName, EFileLoggingModeAppend );
-        TBuf<KLogTimeFormatLength> timeStamp;
-        TTime now;
-        now.HomeTime();
-        TDateTime dateTime;
-        dateTime = now.DateTime();
-        timeStamp.Format( KLogTimeFormat,
-            dateTime.Hour(), dateTime.Minute(),
-            dateTime.Second(), dateTime.MicroSecond() );
-        buf.Insert( 0, timeStamp );
-
-        logger.Write(buf);
-        }
-
-    logger.Close();
-
-    VA_END( args );
-
-    }
-    
-#endif // _DEBUG
-
-//  End of File