summaryrefslogtreecommitdiff
path: root/ucb/source
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@suse.com>2013-03-14 20:47:12 +0200
committerTor Lillqvist <tlillqvist@suse.com>2013-03-14 20:57:10 +0200
commit823980eafc14607876b525cf62b0c4b2778ff6d6 (patch)
tree68fcd85b5eceaa8e7c484632e7d491d88c01b0a7 /ucb/source
parent11aa71c442da422999befbcee79fe1c0c0e7e194 (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/source')
-rw-r--r--ucb/source/ucp/webdav/NeonSession.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.cxx b/ucb/source/ucp/webdav/NeonSession.cxx
index 18271b4f20c8..d35a4dfc0893 100644
--- a/ucb/source/ucp/webdav/NeonSession.cxx
+++ b/ucb/source/ucp/webdav/NeonSession.cxx
@@ -703,7 +703,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.
@@ -713,7 +713,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;