Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornitind2010-11-15 16:21:58 +0000
committernitind2010-11-15 16:21:58 +0000
commit07e310b4495cfc160f744308c86bb473c69b29cd (patch)
tree4867b6ba1b27a0461d1a460f19cacc28068c681a
parent158555afb6640c2a51b731c658088f1680eee384 (diff)
downloadwebtools.sourceediting-07e310b4495cfc160f744308c86bb473c69b29cd.tar.gz
webtools.sourceediting-07e310b4495cfc160f744308c86bb473c69b29cd.tar.xz
webtools.sourceediting-07e310b4495cfc160f744308c86bb473c69b29cd.zip
[nobug] better log output when it happens
-rw-r--r--bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
index 659e4dac7e..0d9b26dd22 100644
--- a/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
+++ b/bundles/org.eclipse.wst.sse.ui/src/org/eclipse/wst/sse/ui/StructuredTextEditor.java
@@ -2682,8 +2682,7 @@ public class StructuredTextEditor extends TextEditor {
else {
implClass = "document was null"; //$NON-NLS-1$
}
- Logger.log(Logger.WARNING, " Unexpected IDocumentProvider implementation: " + getDocumentProvider().getClass().getName()); //$NON-NLS-1$
- Logger.log(Logger.WARNING, " Unexpected IDocument implementation: " + implClass); //$NON-NLS-1$
+ Logger.log(Logger.WARNING, "Unexpected IDocument implementation: " + implClass + "\n\tIDocumentProvider implementation: " + getDocumentProvider().getClass().getName()); //$NON-NLS-1$ //$NON-NLS-2$
}
/*

Back to the top