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:
parent
ddfec46bce
commit
9f0484c2bc
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue