[Libreoffice-commits] core.git: svl/source

Julien Nabet serval2412 at yahoo.fr
Thu Aug 24 19:04:41 UTC 2017


 svl/source/notify/lstner.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 80d8cbb8e1444ff89dd61b270b43995623e95662
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Thu Aug 24 19:52:44 2017 +0200

    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 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

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.");


More information about the Libreoffice-commits mailing list