[Libreoffice-commits] core.git: binaryurp/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Mon Jun 7 14:08:03 UTC 2021
binaryurp/source/reader.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit 9f0484c2bca8e7ec5e0d83289fae9b474b8598e0
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Mon Jun 7 12:52:21 2021 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Mon Jun 7 16:07:23 2021 +0200
improve logging message
Change-Id: Ib8f4fdbe3d644c035a125f7ae0a035a95bcafc76
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/116781
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/binaryurp/source/reader.cxx b/binaryurp/source/reader.cxx
index b11b77ffe658..902225e1bd54 100644
--- a/binaryurp/source/reader.cxx
+++ b/binaryurp/source/reader.cxx
@@ -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();
More information about the Libreoffice-commits
mailing list