diff --git a/platform/platform-impl/src/com/intellij/openapi/wm/impl/ToolWindowManagerImpl.java b/platform/platform-impl/src/com/intellij/openapi/wm/impl/ToolWindowManagerImpl.java index b3d5f395de34..fe20fb358145 100644 --- a/platform/platform-impl/src/com/intellij/openapi/wm/impl/ToolWindowManagerImpl.java +++ b/platform/platform-impl/src/com/intellij/openapi/wm/impl/ToolWindowManagerImpl.java @@ -1361,7 +1361,12 @@ public final class ToolWindowManagerImpl extends ToolWindowManagerEx implements Disposer.register(getProject(), balloon); final StripeButton button = stripe.getButtonFor(toolWindowId); - LOG.assertTrue(button != null, "Button was not found, popup won't be shown"); + LOG.assertTrue(button != null, "Button was not found, popup won't be shown. Toolwindow id: " + + toolWindowId + + ", message: " + + text + + ", message type: " + + type); if (button == null) return; final Runnable show = new Runnable() {