summaryrefslogtreecommitdiff
path: root/desktop/unx/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-05-16 15:00:36 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-05-20 15:23:08 +0100
commitcfacb7f6f85475b06dbd9d0c310fa9cf275041ee (patch)
tree34d403c00062a8550bb737c1583e09958e338569 /desktop/unx/source
parent0ae45c5b39cd0e7baae958eadbad1a52bda98b16 (diff)
do we really need to be so noisy when nothing is actually wrong
Diffstat (limited to 'desktop/unx/source')
-rwxr-xr-xdesktop/unx/source/start.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/desktop/unx/source/start.c b/desktop/unx/source/start.c
index 100a8e44d71d..4436ae7b2835 100755
--- a/desktop/unx/source/start.c
+++ b/desktop/unx/source/start.c
@@ -79,7 +79,7 @@ charp_to_ustr( const char *pStr )
}
/* Easier debugging of rtl_uString values. */
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
static void
ustr_debug( const char *pMessage, rtl_uString *pStr )
{
@@ -236,7 +236,7 @@ get_md5hash( rtl_uString *pText )
if ( !pText )
return NULL;
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
rtl_String *pOut = ustr_to_str( pText );
fprintf (stderr, "Generate pipe md5 for '%s'\n", pOut->buffer);
rtl_string_release( pOut );
@@ -697,7 +697,7 @@ read_percent( ChildInfo *info, int *pPercent )
}
}
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
fprintf( stderr, "Got status: %s\n", pBegin );
#endif
if ( !strncasecmp( pBegin, "end", 3 ) )
@@ -884,7 +884,7 @@ exec_javaldx (Args *args)
*chomp = '\0';
}
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
fprintf (stderr, "Adding javaldx path of '%s'\n", newpath);
#endif
extend_library_path (newpath);
@@ -932,7 +932,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv )
close( fd );
}
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
else
ustr_debug( "Failed to connect to pipe", pPipePath );
#endif
@@ -990,7 +990,7 @@ SAL_IMPLEMENT_MAIN_WITH_ARGS( argc, argv )
bShortWait = sal_False;
}
-#if OSL_DEBUG_LEVEL > 0
+#if OSL_DEBUG_LEVEL > 1
fprintf( stderr, "Polling, result is %s\n",
( eResult == ProgressContinue )? "continue" :
( ( eResult == ProgressRestart )? "restart" : "exit" ) );