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

Julien Nabet serval2412 at yahoo.fr
Tue Dec 20 21:22:49 UTC 2016


 sfx2/source/control/dispatch.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit 6c77c2fdf694725250333b7faa62974d356a025a
Author: Julien Nabet <serval2412 at yahoo.fr>
Date:   Tue Dec 20 20:01:38 2016 +0100

    Downgrade SAL_WARN -> SAL_INFO
    
    Change-Id: I2f0957ee2ce7156e8ea9ce376787d2898e517fbf
    Reviewed-on: https://gerrit.libreoffice.org/32252
    Reviewed-by: Julien Nabet <serval2412 at yahoo.fr>
    Tested-by: Julien Nabet <serval2412 at yahoo.fr>

diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx
index ba5c92b..dbb4a7b 100644
--- a/sfx2/source/control/dispatch.cxx
+++ b/sfx2/source/control/dispatch.cxx
@@ -475,7 +475,7 @@ SfxDispatcher::SfxDispatcher(SfxViewFrame *pViewFrame)
 */
 SfxDispatcher::~SfxDispatcher()
 {
-    SAL_WARN("sfx.control", "Delete Dispatcher " << reinterpret_cast<sal_Int64>(this));
+    SAL_INFO("sfx.control", "Delete Dispatcher " << reinterpret_cast<sal_Int64>(this));
     DBG_ASSERT( !xImp->bActive, "deleting active Dispatcher" );
 
     // So that no timer by Reschedule in PlugComm strikes the LeaveRegistrations
@@ -731,7 +731,7 @@ void SfxDispatcher::DoActivate_Impl(bool bMDI)
     SFX_STACK(SfxDispatcher::DoActivate);
     if ( bMDI )
     {
-        SAL_WARN("sfx.control", "Activate Dispatcher " << reinterpret_cast<sal_Int64>(this));
+        SAL_INFO("sfx.control", "Activate Dispatcher " << reinterpret_cast<sal_Int64>(this));
         DBG_ASSERT( !xImp->bActive, "Activation error" );
 
         xImp->bActive = true;
@@ -745,7 +745,7 @@ void SfxDispatcher::DoActivate_Impl(bool bMDI)
     }
     else
     {
-        SAL_WARN("sfx.control", "Non-MDI-Activate Dispatcher " << reinterpret_cast<sal_Int64>(this));
+        SAL_INFO("sfx.control", "Non-MDI-Activate Dispatcher " << reinterpret_cast<sal_Int64>(this));
     }
 
     if ( IsAppDispatcher() )


More information about the Libreoffice-commits mailing list