browserui/browser/Group/BrowserLogger.inc
author Stefan Karlsson <stefan.karlsson@nokia.com>
Sat, 10 Apr 2010 13:40:36 +0100
branchCompilerCompatibility
changeset 49 96b6b5b6545a
parent 33 97c9f46387be
permissions -rw-r--r--
Got rid of some trivial warnings (nested comments and tokens after #endif).

/*
* This file enables or disables the logger 
* functionality in Browser Application.
* File included into mmp files.
*/

// define this macro to enable browser log
// #define __BROWSER_LOG_ENABLE

// define this macro to enable browser performance log
//#define __BROWSER_PERF_LOG_ENABLE


// debug mode always activates log
#if defined( __BROWSER_LOG_ENABLE ) || defined( _DEBUG )
	MACRO I__BROWSER_LOG_ENABLED
	#define I__BROWSER_LOG_ENABLED
#endif

#if defined( __BROWSER_PERF_LOG_ENABLE )
	MACRO I__BROWSER_PERF_LOG_ENABLED
	#define I__BROWSER_PERF_LOG_ENABLED
#endif