1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-23 17:05:26 +02:00

Added stack trace to diagnostic messages.

Change-Id: I4d4bc1bb6f51ec3f0cf88b13d77e6bb697146e8b
This commit is contained in:
Sergey Prigogin 2016-12-16 15:07:51 -08:00
parent 432524a9a8
commit 5f1c234b77

View file

@ -53,8 +53,8 @@ public class ASTInternal {
if (binding instanceof ICInternalBinding) {
return ((ICInternalBinding) binding).getDefinition();
}
CCorePlugin.log("ASTInternal.getDefinitionOfBinding() called for binding of type " + //$NON-NLS-1$
binding.getClass().getName());
CCorePlugin.log(new Exception("ASTInternal.getDefinitionOfBinding() called for binding of type " + //$NON-NLS-1$
binding.getClass().getName()));
assert false;
return null;
}