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:
parent
30b9c6a457
commit
a32bfdfd28
@ -33,7 +33,7 @@
|
|||||||
#include <sstream>
|
#include <sstream>
|
||||||
#include <stdexcept>
|
#include <stdexcept>
|
||||||
|
|
||||||
#if OSL_DEBUG_LEVEL > 2
|
#if OSL_DEBUG_LEVEL > 0
|
||||||
void dumpParameter();
|
void dumpParameter();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -248,7 +248,7 @@ int main(int argc, char* argv[])
|
|||||||
|
|
||||||
initParameter(argc, argv);
|
initParameter(argc, argv);
|
||||||
|
|
||||||
#if OSL_DEBUG_LEVEL > 2
|
#if OSL_DEBUG_LEVEL > 0
|
||||||
dumpParameter();
|
dumpParameter();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -300,7 +300,7 @@ int main(int argc, char* argv[])
|
|||||||
return ulRet;
|
return ulRet;
|
||||||
}
|
}
|
||||||
|
|
||||||
#if OSL_DEBUG_LEVEL > 2
|
#if OSL_DEBUG_LEVEL > 0
|
||||||
void dumpParameter()
|
void dumpParameter()
|
||||||
{
|
{
|
||||||
std::ostringstream oss;
|
std::ostringstream oss;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user