diff options
author | Rohan Kumar <rohankanojia420@gmail.com> | 2016-03-07 22:56:00 +0530 |
---|---|---|
committer | Björn Michaelsen <bjoern.michaelsen@canonical.com> | 2016-03-12 14:24:42 +0000 |
commit | 0c3ff8ca07265304f9ea0a7aca8c83703cff01a1 (patch) | |
tree | 47f3268cebd9ade7c8afc8ff4d5aa199ee69849c /rsc/source/prj | |
parent | f3d454647ae5f0398ce3b38a71ed525bc16c3722 (diff) |
tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals
I replaced OSL_DEBUG_LEVEL > 1 with OSL_DEBUG_LEVEL > 0 conditionals
and in some places i used SAL_INFO(..)s
Change-Id: I87e2e4d73be22630dbcce6df2650b924cba9f8ec
Reviewed-on: https://gerrit.libreoffice.org/23005
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
Diffstat (limited to 'rsc/source/prj')
-rw-r--r-- | rsc/source/prj/gui.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/rsc/source/prj/gui.cxx b/rsc/source/prj/gui.cxx index 3a0f0609ca19..f95f46988378 100644 --- a/rsc/source/prj/gui.cxx +++ b/rsc/source/prj/gui.cxx @@ -42,9 +42,7 @@ static RscVerbosity lcl_determineVerbosity( int argc, char ** argv ) int rsc2_main( int argc, char **argv ) { -#if OSL_DEBUG_LEVEL > 1 - fprintf( stderr, "debugging %s\n", argv[0] ); -#endif + SAL_WARN("rsc", "debugging " << argv[0]); ERRTYPE aError; |