summaryrefslogtreecommitdiff
path: root/binaryurp
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2020-06-10 12:04:09 +0200
committerStephan Bergmann <sbergman@redhat.com>2020-06-10 17:01:24 +0200
commitff3324bb16c8cde96e50582d45bc2c8a97f5704b (patch)
treefdea115dfef70889ac80ccb628c2d40fc7d981d0 /binaryurp
parent197592a2145e00a3f75e3af8520a3fe475c9edad (diff)
Improve a SAL_WARN message
Change-Id: I31f809e5f6fec109bd0fb58e8290323500d44f13 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96001 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'binaryurp')
-rw-r--r--binaryurp/source/bridge.cxx3
1 files changed, 2 insertions, 1 deletions
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();