summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-03-14 20:47:12 +0200
committerTor Lillqvist <tml@iki.fi>2013-04-02 08:37:03 +0300
commitbe2ce85e9539debc7c40680a6616c7dbe461d74c (patch)
treecd05a4207bb3fd750a2b5fb4646a472429d2a0f9 /ucb
parentb4fafe903e42db1d63550b1d0ad859d786e3688b (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. Change-Id: I6757954ea3ad53df855935930de176c222bff0ed
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;