diff -r f10336de0cd6 -r faa5ef4f80da accesspointcontrol/apcontrollistplugin/src/apcontrollistpluginlogger.cpp --- a/accesspointcontrol/apcontrollistplugin/src/apcontrollistpluginlogger.cpp Thu Jun 17 22:32:02 2010 +0100 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,172 +0,0 @@ -/* -* Copyright (c) 2006 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: -* Implementation of class APControlListPluginLogger. -* -*/ - - -// INCLUDE FILES - -#ifdef _DEBUG - - #include "apcontrollistpluginlogger.h" - #include - #include - - // ================= CONSTANTS ======================= - - /// apcontrollistplugin logging directory. - _LIT( KapcontrollistpluginLogDir, "apcontrollistplugin" ); - /// apcontrollistplugin log file name. - _LIT( KapcontrollistpluginLogFile, "apcontrollistplugin.txt" ); - - - // ================= MEMBER FUNCTIONS ======================= - - // --------------------------------------------------------- - // APControlListPluginLogger::Write() - // --------------------------------------------------------- - // - void APControlListPluginLogger::Write - ( TInt32 aMask, TInt aLevel, TRefByValue aFmt, ... ) - { - if( (aMask & APCONTROL_LIST_LOG_MASK) && (aLevel <= APCONTROL_LIST_LOG_LEVEL) ) - { - VA_LIST list; - VA_START( list, aFmt ); - RFileLogger::WriteFormat - ( - KapcontrollistpluginLogDir, - KapcontrollistpluginLogFile, - EFileLoggingModeAppend, - aFmt, - list - ); - VA_END( list ); - } - } - - - // --------------------------------------------------------- - // APControlListPluginLogger::Write() - // --------------------------------------------------------- - // - void APControlListPluginLogger::Write - ( TInt32 aMask, TInt aLevel, TRefByValue aFmt, - VA_LIST& aList ) - { - if( (aMask & APCONTROL_LIST_LOG_MASK) && (aLevel <= APCONTROL_LIST_LOG_LEVEL) ) - { - RFileLogger::WriteFormat - ( - KapcontrollistpluginLogDir, - KapcontrollistpluginLogFile, - EFileLoggingModeAppend, - aFmt, - aList - ); - } - } - - - // --------------------------------------------------------- - // APControlListPluginLogger::Write() - // --------------------------------------------------------- - // - void APControlListPluginLogger::Write - ( TInt32 aMask, TInt aLevel, TRefByValue aFmt, ... ) - { - if( (aMask & APCONTROL_LIST_LOG_MASK) && (aLevel <= APCONTROL_LIST_LOG_LEVEL) ) - { - VA_LIST list; - VA_START( list, aFmt ); - RFileLogger::WriteFormat - ( - KapcontrollistpluginLogDir, - KapcontrollistpluginLogFile, - EFileLoggingModeAppend, - aFmt, - list - ); - VA_END( list ); - } - } - - - // --------------------------------------------------------- - // APControlListPluginLogger::Write() - // --------------------------------------------------------- - // - void APControlListPluginLogger::Write - ( TInt32 aMask, TInt aLevel, TRefByValue aFmt, - VA_LIST& aList ) - { - if( (aMask & APCONTROL_LIST_LOG_MASK) && (aLevel <= APCONTROL_LIST_LOG_LEVEL) ) - { - RFileLogger::WriteFormat - ( - KapcontrollistpluginLogDir, - KapcontrollistpluginLogFile, - EFileLoggingModeAppend, - aFmt, - aList - ); - } - } - - - // --------------------------------------------------------- - // APControlListPluginLogger::HexDump() - // --------------------------------------------------------- - // - void APControlListPluginLogger::HexDump - ( - TInt32 aMask, - TInt aLevel, - const TText* aHeader, - const TText* aMargin, - const TUint8* aPtr, - TInt aLen - ) - { - if( (aMask & APCONTROL_LIST_LOG_MASK) && (aLevel <= APCONTROL_LIST_LOG_LEVEL) ) - { - RFileLogger::HexDump - ( - KapcontrollistpluginLogDir, - KapcontrollistpluginLogFile, - EFileLoggingModeAppend, - aHeader, - aMargin, - aPtr, - aLen - ); - } - } - - // --------------------------------------------------------- - // APControlListPluginLogger::FCreate() - // --------------------------------------------------------- - // - void APControlListPluginLogger::FCreate() - { - TFileName path(_L("c:\\logs\\")); - path.Append(KapcontrollistpluginLogDir); - path.Append(_L("\\")); - RFs& fs = CEikonEnv::Static()->FsSession(); - fs.MkDirAll(path); - } -#endif // _DEBUG -