summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-03-14 20:47:12 +0200
committerFridrich Strba <fridrich@documentfoundation.org>2013-04-02 06:40:19 +0000
commitfb0cdcb8e3084ac969a8d744e0e55041431b862e (patch)
tree1001a417854ccfae705dd393e57a4fae1d5cd600 /ucb
parent2c40a112923bf1c4441ea76bb8fe3a7a8aa10bef (diff)
Turn on Neon debug output (if enabled in Neon) when building for debugging
Also add NE_DBG_LOCKS and NE_DBG_SSL to the debugging mask. (cherry picked from commit be2ce85e9539debc7c40680a6616c7dbe461d74c) Change-Id: I6757954ea3ad53df855935930de176c222bff0ed Reviewed-on: https://gerrit.libreoffice.org/3166 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/NeonSession.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-neon/NeonSession.cxx b/ucb/source/ucp/webdav-neon/NeonSession.cxx
index 3ac4700765a7..f1f3b9f38dae 100644
--- a/ucb/source/ucp/webdav-neon/NeonSession.cxx
+++ b/ucb/source/ucp/webdav-neon/NeonSession.cxx
@@ -695,7 +695,7 @@ void NeonSession::Init()
// #122205# - libxml2 needs to be initialized once if used by
// multithreaded programs like OOo.
xmlInitParser();
-#if 0
+#if OSL_DEBUG_LEVEL > 0
// for more debug flags see ne_utils.h; NE_DEBUGGING must be defined
// while compiling neon in order to actually activate neon debug
// output.
@@ -705,7 +705,8 @@ void NeonSession::Init()
// | NE_DBG_HTTPAUTH
// | NE_DBG_XML
// | NE_DBG_XMLPARSE
- // | NE_DBG_LOCKS
+ | NE_DBG_LOCKS
+ | NE_DBG_SSL
);
#endif
m_bGlobalsInited = true;