summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-20 00:15:33 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2015-08-20 02:15:22 +0200
commit89c03990a8be2101632b872a5d21b276f316a457 (patch)
tree9e44dd46bd319ff46e6849ca830463ec2010b7af
parentce0bba5fc1090caa7fb80f1bcc6ce64f67f11238 (diff)
better warning message for failed panel creation
Change-Id: I631120903f15256997e082e0d079da7c5ee9944b
-rw-r--r--sfx2/source/sidebar/SidebarController.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sfx2/source/sidebar/SidebarController.cxx b/sfx2/source/sidebar/SidebarController.cxx
index f99be6c82f63..afb844936347 100644
--- a/sfx2/source/sidebar/SidebarController.cxx
+++ b/sfx2/source/sidebar/SidebarController.cxx
@@ -816,7 +816,7 @@ Reference<ui::XUIElement> SidebarController::CreateUIElement (
}
catch(const Exception& rException)
{
- SAL_WARN("sfx.sidebar", "Cannot create panel: " << rException.Message);
+ SAL_WARN("sfx.sidebar", "Cannot create panel " << rsImplementationURL << ": " << rException.Message);
return NULL;
}
}