summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-05-27 17:51:08 +0200
committerStephan Bergmann <sbergman@redhat.com>2013-05-27 18:15:32 +0200
commit740c7b1bb2132852784c01dfe21112ced3314eb1 (patch)
treea0122d11bb8b0d54c746d59b1a43d8a304b83c3e /desktop
parent32565ee39be1a9d7be1de934c1dfb424644b346a (diff)
Better debug logging
Change-Id: Ida97a74a8629e0b170d882b38b0eeaa8f53d9bd3
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/deployment/registry/package/dp_package.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/desktop/source/deployment/registry/package/dp_package.cxx b/desktop/source/deployment/registry/package/dp_package.cxx
index 1aac891b7462..51689a6b40a6 100644
--- a/desktop/source/deployment/registry/package/dp_package.cxx
+++ b/desktop/source/deployment/registry/package/dp_package.cxx
@@ -1407,13 +1407,14 @@ void BackendImpl::PackageImpl::scanBundle(
{
OSL_ASSERT( !m_legacyBundle );
+ OUString mfUrl( makeURL( m_url_expanded, "META-INF/manifest.xml" ) );
::ucbhelper::Content manifestContent;
if (! create_ucb_content(
- &manifestContent,
- makeURL( m_url_expanded, "META-INF/manifest.xml" ),
- xCmdEnv, false /* no throw */ ))
+ &manifestContent, mfUrl, xCmdEnv, false /* no throw */ ))
{
- OSL_FAIL( "### missing META-INF/manifest.xml file!" );
+ SAL_WARN(
+ "desktop.deployment",
+ "cannot create UCB Content for <" << mfUrl << ">" );
return;
}