tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals

I replaced OSL_DEBUG_LEVEL > 2 conditionals with OSL_DEBUG_LEVEL > 0
conditionals

Change-Id: Ibfb3a4e00da7ef6a213dcd4659c7963935cfad1f
Reviewed-on: https://gerrit.libreoffice.org/23081
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Björn Michaelsen <bjoern.michaelsen@canonical.com>
This commit is contained in:
Rohan Kumar 2016-03-09 19:17:44 +05:30 committed by Björn Michaelsen
parent 30b9c6a457
commit a32bfdfd28

View File

@ -33,7 +33,7 @@
#include <sstream>
#include <stdexcept>
#if OSL_DEBUG_LEVEL > 2
#if OSL_DEBUG_LEVEL > 0
void dumpParameter();
#endif
@ -248,7 +248,7 @@ int main(int argc, char* argv[])
initParameter(argc, argv);
#if OSL_DEBUG_LEVEL > 2
#if OSL_DEBUG_LEVEL > 0
dumpParameter();
#endif
@ -300,7 +300,7 @@ int main(int argc, char* argv[])
return ulRet;
}
#if OSL_DEBUG_LEVEL > 2
#if OSL_DEBUG_LEVEL > 0
void dumpParameter()
{
std::ostringstream oss;