summaryrefslogtreecommitdiffstats
path: root/sal/test
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-04-15 16:48:19 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-04-15 16:48:19 +0000
commitab26b4c02ff7da2b93b504a48cd53e04a66ba3ac (patch)
tree05ef07c5d7e577b7060fc08f9a07ef2b84d106cf /sal/test
parentINTEGRATION: CWS dbgmacros1 (1.11.6.4.4.2.72); FILE MERGED (diff)
downloadcore-ab26b4c02ff7da2b93b504a48cd53e04a66ba3ac.tar.gz
core-ab26b4c02ff7da2b93b504a48cd53e04a66ba3ac.zip
INTEGRATION: CWS dbgmacros1 (1.7.72); FILE MERGED
2003/04/09 12:09:05 kso 1.7.72.1: #108413# - debug macro unification.
Diffstat (limited to 'sal/test')
-rw-r--r--sal/test/testbootstrap.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/sal/test/testbootstrap.cxx b/sal/test/testbootstrap.cxx
index 8ce351024599..6f0d07addbd2 100644
--- a/sal/test/testbootstrap.cxx
+++ b/sal/test/testbootstrap.cxx
@@ -14,7 +14,7 @@ int main( int argc, char *argv[] )
{
sal_Int32 nCount = rtl_getAppCommandArgCount();
-#ifdef DEBUG
+#if OSL_DEBUG_LEVEL > 1
fprintf( stdout, "rtl-commandargs (%d) real args:%i ", nCount, argc);
for( sal_Int32 i = 0 ; i < nCount ; i ++ )
{
@@ -36,7 +36,7 @@ int main( int argc, char *argv[] )
OUString iniName;
Bootstrap::get(OUString(RTL_CONSTASCII_USTRINGPARAM("iniName")), iniName, OUString());
-#ifdef DEBUG
+#if OSL_DEBUG_LEVEL > 1
if(iniName.getLength())
{
OString tmp_iniName = OUStringToOString(iniName, RTL_TEXTENCODING_ASCII_US);