We want consolidate the debug levels and scenarios available in LibreOffice. The first step is to get rid of OSL_DEBUG_LEVELs higher than 1: 2,3,4,5... So this task is to: 1/ Find code that is only build if OSL_DEBUG_LEVEL is higher than 1 2/ replace the preprocessor conditional to, depending on situation: a/ to assert invariants of the code (that can only be violated if there are programming errors) without major overhead use standard C/C++ assert (see also bug 43157) b/ to log warnings about unusual events detectable without too much overhead (that the code nevertheless needs to handle in some way, like malformed input or I/O failures), use the SAL_WARN... macros from sal/log.h c/ to log other information useful for debugging, use the SAL_INFO macros d/ for code that significantly impacts runtime performance, code size or memory footprint consider triggering it on well-named custom macro flag name DEBUG_$module_$topic, e.g. DEBUG_SW_LAYOUT e/ for code that seems not to warrant a topic name, use "#ifdef 0" to disable the code unconditionally In general, when touching an area of code, make sure the code compiles and passes tests. It makes no sense to have even "#ifdef 0" code that is broken. For more details, see: - http://nabble.documentfoundation.org/Consolidating-debugging-levels-via-Easy-Hacks-td4149516.html and - http://nabble.documentfoundation.org/minutes-of-ESC-call-td4149776.html
Migrating Whiteboard tags to Keywords: (easyHack, difficultyBeginner, skillCpp, topicCleanup)
PLEASE do not blindly disable test code that was in #if OSL_DEBUG_LEVEL > 1, rather change it to be always run in debug/dbgutil builds, so #if OSL_DEBUG_LEVEL > 0
(In reply to Eike Rathke from comment #2) > PLEASE do not blindly disable test code that was in #if OSL_DEBUG_LEVEL > 1, > rather change it to be always run in debug/dbgutil builds, so #if > OSL_DEBUG_LEVEL > 0 I'm sorry. let me update the patch!
JanI is default CC for Easy Hacks (Add Jan; remove LibreOffice Dev List from CC) [NinjaEdit]
Details have been discussed on the ESC call: + Discuss of when to use #if 0, and to use/not use #ifdef <module>_DEBUG + lack of consensus here. + rationale so far (Bjoern) + we have two somewhat tinderboxed/CIed debug levels: + compatible build (--enable-debug/--enable-selective-debuginfo/"make sfx.clean && make debug=t sfx2") => must be compatible with rest of the build being non-debug + incompatible build (--enable-dbgutil) => must be compatible with rest of the build being dbgutil + IMHO it doesnt make sense to have more than these two debug levels (would bitrot anyway): => move all code in one of those or kill it + some code v. expensive / specifix (Norbert) + sympathetic to having it around. + dislike #if OSL_DEBUG_LEVEL > 1 etc. (Bjoern) + there are valid use cases for _DEBUG code (Eike/[Moggi]) + see for example DEBUG_MATRIX in calc + code for debugging complex data structures + impossible to debug some parts of the code without such code + impossible to write that code each time you need to debug it + agree with removing several debug levels (Eike) + but leave DEBUG_FOO macros + doing it blindly a problem; needs some insight & review. + could handle macros similarly for config feature-tests (Stephan) + where we define them as all as zero + and everywhere #if DEBUG_FOO etc. so we don't get new ones of these + could change them all to 1 to avoid bit-rot + good to document them centrally. + concern wrt. ripple include (Michael) + we have around 15 pending (JanI) + concerned wrt. actions on review feedback. + wine has some complex debug env. var (JMux) + could be used to turn off expensive stuff (Stephan) AI: => switch easy-hack to turn: OSL_DEBUG_LEVEL > 1 to OSL_DEBUG_LEVEL > 0 (Bjoern) http://nabble.documentfoundation.org/minutes-of-ESC-call-td4177395.html So, the updated procedure is: - check if debug code compiles first - bring OSL_DEBUG_LEVEL > 1 code to OSL_DEBUG_LEVEL > 0 (which is enabled in normal --enable-debug builds and thus should not bit-rot) - exceptions will be discussed in code review
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f59136a2ed1e3eb01cc5b62c5a7da07c34cbdfae tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=5f164b6e01496655ee0616e16d251e066d99ea73 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Eike Rathke committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=e0331002d39244cf9c8944fe291d1d009f919eb5 do the calculation check only conditionally, tdf#91794 follow-up It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=3f80f144cff8d8ddd1d33e7b8ca6dbe2ad8d8491 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=856cf7115d7b52f38371047b4a1aeae747a5d9bc tdf#91794 Remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=26b69a9d0f6ae454ccd57019a68ef96be2568ba5 tdf#91794 Remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=576ab772555ed9f06995d9b5d605c90191500a76 tdf#91794 Remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=ea3151acb4915e56c702e4edfa92a9b571c3d104 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=6326d76101857e94f241dc671c3e3a2a7bf9b031 tdf#91794 Remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Michael Stahl committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=466c03f9566344b24aaa70b374daf46054914290 Revert "tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals" It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=05bca569232d0ece0c6700513b7b1351238c85ec tdf#91794: Remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0a8c9fde3ba59a278c9ee4d18f099cfeec71fbef tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=a32bfdfd280b51d1bd5283243e286f056d3986dd tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=96e44b3b510bc97ddda6caf937d031ae6a656d58 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=2e0c1e03e85ef6a20ca362f263c60b141741f698 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=004c233d30a432ba4e8e4c0d0052d34798850bd4 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b430ec96e3b131734239305715e2593dc4b57af2 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=eda245925170eab692143deed367ab11a9adb310 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f3d454647ae5f0398ce3b38a71ed525bc16c3722 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0c3ff8ca07265304f9ea0a7aca8c83703cff01a1 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=221144f9c995fe30adf577c02f756b3123fb2550 tdf#91794 OSL_DEBUG_LEVEL > 1 removed (desktop) It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Norbert Thiebaud committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=982fcf11b763ac1b4cd2b68291ea7d94fe14752d Revert "tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals" It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
(In reply to Björn Michaelsen from comment #5) > So, the updated procedure is: > - check if debug code compiles first ^^ highlighting this, as http://nabble.documentfoundation.org/Test-Builds-with-vs2013-2015-32-64-bits-rel-debug-dbgutil-td4178456.html suggests it was overlooked before.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=afbdde44b85e0d76bbc102188391b296113802dd tdf#91794 remove OSL_DEBUG_LEVLEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b69d253fe4192c7224b4205ca52109070d2df5ed tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=b64c7f946ad56a7566e117b63657e654afaab2bd tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=20efe5ebcbc49ef3ea46bb13b8aec05c81b86308 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=bfa7b700480fdc4c52ea91f30bcd274d963721f5 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=28aaa27438fb3a743792ce821ba1f523a5d9947f tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=d6411207bd83b34b4d6c6fd68cd41d3005228b05 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=901d04d3965ed73696586de06c6890e79299f266 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0452db13db40e81522fb6bc49136d25b6ffcff41 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=0161f713c722392796347cf12d94423e218bdc4c tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=931d003ade7c4a88f46be1e89b32d58e5eb9d083 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=bc504b08f008b1813a29bb90c226340407c2077b tdf#91794 OSL_DEBUG_LEVEL > 1 removed in libo/filter module It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=f0de4374fffe7fb72ce0e9006af57092834dfe1e tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=c829898453d75c0f13ff589b7f8adf8fb062a39f tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=aba0c20fb059e5cc484af5feae29e6f51e584fa8 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=77ba9d7e3055d69667e6c3545f311492a34056c6 tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=35d7ca80930997febb31eb7cdd95eeb684514bec tdf#91794 remove OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=31bddb874d2be54b81cdd7ea142b58db18e11a5b tdf#91794 removed OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=81c9d54db34647fb1db311b228de6749c089dcf8 tdf#91794 removed OSL_DEBUG_LEVEL > 1 conditionals It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.
seems solved (at least seen from a easy hack pow)
Rohan Kumar committed a patch related to this issue. It has been pushed to "master": http://cgit.freedesktop.org/libreoffice/core/commit/?id=5c7ce42dfc35d9cceef5f05a96e813b4e3913d38 tdf#91794 OSL_DEBUG_LEVEL > 1 & DBG macro removed (impress/draw) It will be available in 5.2.0. The patch should be included in the daily builds available at http://dev-builds.libreoffice.org/daily/ in the next 24-48 hours. More information about daily builds can be found at: http://wiki.documentfoundation.org/Testing_Daily_Builds Affected users are encouraged to test the fix and report feedback.