summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-06-14 14:23:19 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-06-15 07:22:31 +0200
commitc872abf8e7066001be9805883a6f2c6528287aec (patch)
treec1a5f455ef35ac3c4959017ef942ddaed141c100
parent5a00e1e518d2e65fe7ac066a1dd2e42972ccfd82 (diff)
fix copy/paste mistake in TOOLS_INFO_EXCEPTION
Change-Id: I209efe41639eeff215b876cb1da5c9a8252f4b55 Reviewed-on: https://gerrit.libreoffice.org/74042 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
-rw-r--r--include/tools/diagnose_ex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/tools/diagnose_ex.h b/include/tools/diagnose_ex.h
index d37b7e99b368..a70a4e0ab60f 100644
--- a/include/tools/diagnose_ex.h
+++ b/include/tools/diagnose_ex.h
@@ -160,7 +160,7 @@ TOOLS_DLLPUBLIC OString exceptionToString(css::uno::Any const & caughtEx);
#define TOOLS_INFO_EXCEPTION(area, stream) \
do { \
css::uno::Any tools_warn_exception( cppu::getCaughtException() ); \
- SAL_WARN(area, stream << " " << exceptionToString(tools_warn_exception)); \
+ SAL_INFO(area, stream << " " << exceptionToString(tools_warn_exception)); \
} while (false)
#endif