summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-10-21 17:15:01 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-10-21 17:22:55 +0200
commit16591b8ef73afbcb5645451f4477136ed4956d79 (patch)
tree03d8ec76e7919875af0af70d0ad5f9dac78255ff
parentd1e9aa23a7b74e153479e0e23aac1c02cca48177 (diff)
SAL_WARN about unsupported dispatch requests
Change-Id: I3ee646258ed1419245a0766c79214102b08bbca1
-rw-r--r--desktop/source/app/dispatchwatcher.cxx4
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() )
{
{