diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-08-24 19:52:44 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-08-24 21:01:47 +0200 |
commit | 80d8cbb8e1444ff89dd61b270b43995623e95662 (patch) | |
tree | 4b847e7f1c1d318f377bcb1524c1d9b0e9160b98 /svl | |
parent | c84332184a5de3e4180514cf6e3282597ffe5dd6 (diff) |
SAL_INFO->SAL_WARN in lstner.cxx (svl module)
Since we're already in #ifdef DBG_UTIL, we can also directly use SAL_WARN
Change-Id: Ic7c564f6c08e05eb9bd5928ef031f212def094aa
Reviewed-on: https://gerrit.libreoffice.org/41531
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/notify/lstner.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/notify/lstner.cxx b/svl/source/notify/lstner.cxx index 0b3d2e9a3af5..75928021351a 100644 --- a/svl/source/notify/lstner.cxx +++ b/svl/source/notify/lstner.cxx @@ -95,7 +95,7 @@ void SfxListener::StartListening( SfxBroadcaster& rBroadcaster, bool bPreventDup if (bListeningAlready && !bPreventDuplicates) { auto f = mpImpl->maCallStacks.find( &rBroadcaster ); - SAL_INFO("svl", "previous StartListening call came from: " << sal_backtrace_to_string(f->second.get())); + SAL_WARN("svl", "previous StartListening call came from: " << sal_backtrace_to_string(f->second.get())); } #endif assert(!(bListeningAlready && !bPreventDuplicates) && "duplicate listener, try building with DBG_UTIL to find the other insert site."); |