diff options
-rw-r--r-- | desktop/source/app/dispatchwatcher.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/desktop/source/app/dispatchwatcher.cxx b/desktop/source/app/dispatchwatcher.cxx index 5b6e911fc6d8..b550c564f365 100644 --- a/desktop/source/app/dispatchwatcher.cxx +++ b/desktop/source/app/dispatchwatcher.cxx @@ -328,7 +328,9 @@ bool DispatchWatcher::executeDispatchRequests( const DispatchList& aDispatchRequ xParser->parseStrict( aURL ); xDispatcher = xDesktop->queryDispatch( aURL, OUString(), 0 ); - + SAL_WARN_IF( + !xDispatcher.is(), "desktop.app", + "unsupported dispatch request <" << aName << ">"); if( xDispatcher.is() ) { { |