controlpanel/controlpanel_plat/inc/cplogger.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Mar 2010 09:34:30 +0200
changeset 18 e3554c9069b6
child 19 30540fccecae
permissions -rw-r--r--
Revision: 201005 Kit: 201011

/*
* Copyright (c) 2009 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:  
*
*/
#ifndef CPLOGGER_H
#define CPLOGGER_H


/* 
    Windows: C:/ControlPanel/debug/bin/controlpanellog.conf
    Symbian: C:/data/.config/controlpanellog.conf

    Format:

    [ControlPanel]
    logdatetime = 1
    logloggername = 1
    output = debugoutput fileoutput
    fileoutput/logfile = C:/data/logs/controlpanel.log
    fileoutput/truncate = 0
*/

#include <QLatin1String>
#include <logger.h>

#define CPFW_LOGGER_NAME     QLatin1String("CpFramework")

#if defined (Q_OS_SYMBIAN)
    #define CP_LOGGER_CONFIG_PATH QLatin1String("C:/data/.config/controlpanellog.conf")
#elif defined (Q_WS_WIN)
    #ifdef _DEBUG
        #define CP_LOGGER_CONFIG_PATH QLatin1String("C:/controlpanel/debug/bin/controlpanellog.conf")
    #else 
        #define CP_LOGGER_CONFIG_PATH QLatin1String("C:/controlpanel/release/bin/controlpanellog.conf")
    #endif
#endif

#define CPFW_LOG(str) Logger::instance(CPFW_LOGGER_NAME)->log(str);

#endif /* CPLOGGER_H */