improve logging message

Change-Id: Ib8f4fdbe3d644c035a125f7ae0a035a95bcafc76
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116781
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
This commit is contained in:
Noel Grandin 2021-06-07 12:52:21 +02:00
parent ddfec46bce
commit 9f0484c2bc

View file

@ -120,9 +120,9 @@ void Reader::execute() {
block.done();
}
} catch (const css::uno::Exception & e) {
SAL_WARN("binaryurp", "caught UNO exception '" << e << '\'');
SAL_WARN("binaryurp", "caught UNO exception, " << e << " " << e.Message);
} catch (const std::exception & e) {
SAL_WARN("binaryurp", "caught C++ exception '" << e.what() << '\'');
SAL_WARN("binaryurp", "caught C++ exception, " << e.what() );
}
bridge_->terminate(false);
bridge_.clear();