summaryrefslogtreecommitdiff
path: root/sfx2/source/config/evntconf.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sfx2/source/config/evntconf.cxx')
-rw-r--r--sfx2/source/config/evntconf.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sfx2/source/config/evntconf.cxx b/sfx2/source/config/evntconf.cxx
index 1c18d3f8fcf6..5ae485b46b20 100644
--- a/sfx2/source/config/evntconf.cxx
+++ b/sfx2/source/config/evntconf.cxx
@@ -217,7 +217,7 @@ uno::Any CreateEventData_Impl( const SvxMacro *pMacro )
}
else
{
- SAL_INFO( "sfx2", "CreateEventData_Impl(): ScriptType not supported!");
+ SAL_WARN( "sfx2.config", "CreateEventData_Impl(): ScriptType not supported!");
}
}
else
@@ -256,9 +256,13 @@ void PropagateEvent_Impl( SfxObjectShell *pDoc, rtl::OUString aEventName, const
xEvents->replaceByName( aEventName, aEventData );
}
catch( const ::com::sun::star::lang::IllegalArgumentException& )
- { SAL_INFO( "sfx2", "PropagateEvents_Impl: caught IllegalArgumentException" ); }
+ {
+ SAL_WARN( "sfx2.config", "PropagateEvents_Impl: caught IllegalArgumentException" );
+ }
catch( const ::com::sun::star::container::NoSuchElementException& )
- { SAL_INFO( "sfx2", "PropagateEvents_Impl: caught NoSuchElementException" ); }
+ {
+ SAL_WARN( "sfx2.config", "PropagateEvents_Impl: caught NoSuchElementException" );
+ }
}
else {
DBG_WARNING( "PropagateEvents_Impl: Got unkown event" );