summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-11-07 12:08:01 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-11-07 12:33:01 +0000
commit0cd6fc9cfbe485c19ea80124a8c87e4d8e14f813 (patch)
treed58e96944d0feb08440bfa72d71937a11eac07d8 /desktop
parent5d7bf132bda6e870e5333675c1897960d2c0134c (diff)
make the error not a secret
Change-Id: I4ee261bd1dc2c63f0b54e19a2684c8bf1c221680
Diffstat (limited to 'desktop')
-rw-r--r--desktop/source/app/appinit.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/app/appinit.cxx b/desktop/source/app/appinit.cxx
index 43b186f0c191..465b266be0e2 100644
--- a/desktop/source/app/appinit.cxx
+++ b/desktop/source/app/appinit.cxx
@@ -183,11 +183,11 @@ void Desktop::createAcceptor(const OUString& aAcceptString)
rAcceptor->initialize( aSeq );
rMap.insert(AcceptorMap::value_type(aAcceptString, rAcceptor));
}
- catch (const com::sun::star::uno::Exception&)
+ catch (const com::sun::star::uno::Exception& e)
{
// no error handling needed...
// acceptor just won't come up
- SAL_WARN( "desktop.app", "Acceptor could not be created.");
+ SAL_WARN( "desktop.app", "Acceptor could not be created: " << e.Message);
}
}
else