diff options
author | Michael Stahl <mstahl@redhat.com> | 2015-12-19 00:37:11 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2015-12-20 00:56:05 +0100 |
commit | bbbce5e04643a625e8b348f5064b062c013d4953 (patch) | |
tree | 025131f259bd8b4bcadc0a1fd518f1752d259685 /include | |
parent | 3cd1826368c9a6573b4e1c6ce867809c502bd25d (diff) |
oox: disable obnoxious debugging spew
Clearly the amount of noise here is at the SAL_INFO level, don't enable
this by default on --enable-debug.
Change-Id: Ifb8944132716c71cd3132892c1920a31286154cc
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/export/utils.hxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/oox/export/utils.hxx b/include/oox/export/utils.hxx index 66854f61998f..95d154df1bb6 100644 --- a/include/oox/export/utils.hxx +++ b/include/oox/export/utils.hxx @@ -28,8 +28,9 @@ #define BS(x) (x ? "1":"0") #define USS(x) OUStringToOString( x, RTL_TEXTENCODING_UTF8 ).getStr() +// FIXME: this should be removed and replaced by SAL_INFO #ifndef DBG -# if OSL_DEBUG_LEVEL > 0 +# if OSL_DEBUG_LEVEL > 1 # define DBG(x) x # else # define DBG(x) |