sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This file contains the implementation of the class CDefaultLogOutput sl@0: // This file comment is for DOxygen only and is ignored by EDoc. sl@0: // sl@0: // sl@0: sl@0: #include "DefaultLogOutput.h" sl@0: sl@0: CDefaultLogOutput::CDefaultLogOutput(const TDesC& aTitle) : sl@0: iTitle(aTitle) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: CDefaultLogOutput::~CDefaultLogOutput() sl@0: { sl@0: Close(); sl@0: } sl@0: sl@0: void CDefaultLogOutput::OpenL() sl@0: { sl@0: // The directory where the log file will go sl@0: _LIT(KTestBedDirectory, "TestBed"); sl@0: sl@0: User::LeaveIfError(iFLogger.Connect()); sl@0: sl@0: iFLogger.CreateLog(KTestBedDirectory, iTitle, EFileLoggingModeOverwrite); sl@0: iFLogger.SetDateAndTime(EFalse, EFalse); sl@0: } sl@0: sl@0: void CDefaultLogOutput::Write(const TDesC& aOutput) sl@0: { sl@0: iFLogger.Write(aOutput); sl@0: } sl@0: sl@0: void CDefaultLogOutput::Close() sl@0: { sl@0: iFLogger.Close(); sl@0: } sl@0: