diff --git a/harbour/ChangeLog b/harbour/ChangeLog index ada880bd3e..cc4ac6e128 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -8,6 +8,11 @@ 2008-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org) */ +2008-11-12 13:57 UTC+0100 Viktor Szakats (harbour.01 syenar hu) + * source/common/hbverdsp.c + ! Fixed displaying tracing status. (INFO and DEBUG level + counts as 'on'.) + 2008-11-12 12:13 UTC+0100 Viktor Szakats (harbour.01 syenar hu) * make_b32.mak * make_vc.mak diff --git a/harbour/source/common/hbverdsp.c b/harbour/source/common/hbverdsp.c index eb443f1b1b..b49b4154a8 100644 --- a/harbour/source/common/hbverdsp.c +++ b/harbour/source/common/hbverdsp.c @@ -142,8 +142,8 @@ void hb_verBuildInfo( void ) hb_conOutErr( "Build options: ", 0 ); if( hb_xquery( HB_MEM_USEDMAX ) != 0 ) hb_conOutErr( "(memory tracking) ", 0 ); -#if defined( HB_TR_LEVEL ) - hb_conOutErr( "(tracing) ", 0 ); +#if defined( HB_TR_INFO ) && ( HB_TR_LEVEL == HB_TR_INFO || HB_TR_LEVEL == HB_TR_DEBUG ) + hb_conOutErr( "(tracing)", 0 ); #endif #if ! defined( HB_NO_PROFILER ) hb_conOutErr( "(profiler) ", 0 );