summaryrefslogtreecommitdiff
path: root/include/tools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-10-19 11:55:44 +0200
committerNoel Grandin <noel@peralex.com>2015-10-19 13:08:29 +0200
commit39e63bfac528d8c5c002ee8fef4a1e5d7181b826 (patch)
tree8e8dc14e1719c361ccf0cdaccde66b3b7862b1e7 /include/tools
parent367105e0248c7b80b60b2554d04f5f248b4259b3 (diff)
convert remaing DBG_WARNING to SAL_INFO
and drop the macro Change-Id: I452ca373d0c277166e94928c1bce78bf37e39d7c
Diffstat (limited to 'include/tools')
-rw-r--r--include/tools/debug.hxx6
1 files changed, 1 insertions, 5 deletions
diff --git a/include/tools/debug.hxx b/include/tools/debug.hxx
index 3dfafab4b860..e8a128adcf33 100644
--- a/include/tools/debug.hxx
+++ b/include/tools/debug.hxx
@@ -32,8 +32,7 @@
Because the assertion macro (DBG_ASSERT) has been used for
true assertions as well as to log warnings, it maps to SAL_WARN instead of
- standard assert. The warning and error macros (DBG_ASSERTWARNING,
- DBG_WARNING) all map to
+ standard assert. The warning and error macros (DBG_ASSERTWARNING) all map to
SAL_INFO.
*/
@@ -71,9 +70,6 @@ do \
#define DBG_ASSERT( sCon, aError ) \
SAL_DETAIL_WARN_IF_FORMAT(!(sCon), "legacy.tools", "%s", aError)
-#define DBG_WARNING( aWarning ) \
- SAL_DETAIL_INFO_IF_FORMAT(true, "legacy.tools", "%s", aWarning)
-
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */