binaryurp/source/bridge.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit ff3324bb16c8cde96e50582d45bc2c8a97f5704b Author: Stephan Bergmann <[email protected]> AuthorDate: Wed Jun 10 12:04:09 2020 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Jun 10 17:01:24 2020 +0200 Improve a SAL_WARN message Change-Id: I31f809e5f6fec109bd0fb58e8290323500d44f13 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96001 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/binaryurp/source/bridge.cxx b/binaryurp/source/bridge.cxx index 4d375f414719..99e6cafd6f9f 100644 --- a/binaryurp/source/bridge.cxx +++ b/binaryurp/source/bridge.cxx @@ -839,7 +839,8 @@ Bridge::~Bridge() { osl::MutexGuard g(mutex_); SAL_WARN_IF( state_ == STATE_STARTED || state_ == STATE_TERMINATED, "binaryurp", - "undisposed bridge, potential deadlock ahead"); + "undisposed bridge \"" << name_ <<"\" in state " << state_ + << ", potential deadlock ahead"); } #endif dispose(); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
