diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-01-24 10:25:20 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-01-24 10:25:20 +0100 |
commit | 59afa90803feb09d60e65c6d8f1e8486daad4085 (patch) | |
tree | b812b93f3e9143a9f7396623b77d56aa480fb34a /desktop/source | |
parent | d71e8fb17bd008751909ef2fabc6ff4f1e2db187 (diff) |
Improve debug error reporting
Change-Id: I6798f7f855ed65a7628b4a178497205bce2e6060
Diffstat (limited to 'desktop/source')
-rw-r--r-- | desktop/source/offacc/acceptor.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/desktop/source/offacc/acceptor.cxx b/desktop/source/offacc/acceptor.cxx index e15de1e07918..7cfa23452768 100644 --- a/desktop/source/offacc/acceptor.cxx +++ b/desktop/source/offacc/acceptor.cxx @@ -116,7 +116,8 @@ void SAL_CALL Acceptor::run() rtl::OUString() ,m_aProtocol ,rConnection ,rInstanceProvider ); osl::MutexGuard g(m_aMutex); m_bridges.add(rBridge); - } catch (const Exception&) { + } catch (const Exception& e) { + SAL_WARN("desktop", "caught Exception \"" << e.Message << "\""); // connection failed... // something went wrong during connection setup. // just wait for a new connection to accept |