diff options
author | Michael Stahl <mstahl@redhat.com> | 2016-03-08 15:18:33 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2016-03-08 15:20:24 +0100 |
commit | 466c03f9566344b24aaa70b374daf46054914290 (patch) | |
tree | 1c88a7268488b5652f309e3bce058d2c95cae7c9 /l10ntools/source/helpmerge.cxx | |
parent | 291e00bb43b22d1848a3e628eefca20defe6621e (diff) |
Revert "tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals"
In a build --with-lang=2 languages this generates millions of lines of
output, it prints for > 2 minutes straight. Our build system is not a
terminal benchmark, and i have no idea what the problem with
"OSL_DEBUG_LEVEL > 1" conditionals is anyway, so revert it for now.
This reverts commit 3f80f144cff8d8ddd1d33e7b8ca6dbe2ad8d8491.
Diffstat (limited to 'l10ntools/source/helpmerge.cxx')
-rw-r--r-- | l10ntools/source/helpmerge.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/l10ntools/source/helpmerge.cxx b/l10ntools/source/helpmerge.cxx index 676603696ca4..c5fda0522c8b 100644 --- a/l10ntools/source/helpmerge.cxx +++ b/l10ntools/source/helpmerge.cxx @@ -46,7 +46,7 @@ #include "helper.hxx" #include "po.hxx" -#if OSL_DEBUG_LEVEL > 0 +#if OSL_DEBUG_LEVEL > 2 void HelpParser::Dump(XMLHashMap* rElem_in) { for(XMLHashMap::iterator pos = rElem_in->begin();pos != rElem_in->end(); ++pos) @@ -180,7 +180,7 @@ bool HelpParser::MergeSingleFile( XMLFile* file , MergeDataFile* pMergeDataFile { posm = aXMLStrHM->find( *pos ); LangHashMap* aLangHM = posm->second; -#if OSL_DEBUG_LEVEL > 0 +#if OSL_DEBUG_LEVEL > 2 printf("*********************DUMPING HASHMAP***************************************"); Dump(aXMLStrHM); printf("DBG: sHelpFile = %s\n",sHelpFile.getStr() ); |