diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2016-12-20 20:01:38 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2016-12-20 21:22:08 +0000 |
commit | 6c77c2fdf694725250333b7faa62974d356a025a (patch) | |
tree | 819ff0c5a6393fc82044b4a42d23cdc608c94997 /sfx2 | |
parent | f8513683bb2eb4c4d0573334df998aea634e5257 (diff) |
Downgrade SAL_WARN -> SAL_INFO
Change-Id: I2f0957ee2ce7156e8ea9ce376787d2898e517fbf
Reviewed-on: https://gerrit.libreoffice.org/32252
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/source/control/dispatch.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/source/control/dispatch.cxx b/sfx2/source/control/dispatch.cxx index ba5c92b1a1b4..dbb4a7b9d360 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() ) |