1) Introduced a warning log message for breakpoints that do not match the local path...
authorrobekras <robekras>
Mon, 2 Jan 2012 19:59:48 +0000 (19:59 +0000)
committerrobekras <robekras>
Mon, 2 Jan 2012 19:59:48 +0000 (19:59 +0000)
net.sourceforge.phpeclipse.xdebug.core/src/net/sourceforge/phpeclipse/xdebug/php/model/XDebugTarget.java

index ad0d7a6..396b317 100644 (file)
@@ -24,6 +24,7 @@ import org.eclipse.core.resources.IMarker;
 import org.eclipse.core.resources.IMarkerDelta;
 import org.eclipse.core.runtime.CoreException;
 import org.eclipse.core.runtime.IPath;
+import org.eclipse.core.runtime.IStatus;
 import org.eclipse.core.runtime.Path;
 import org.eclipse.debug.core.DebugEvent;
 import org.eclipse.debug.core.DebugException;
@@ -348,6 +349,9 @@ public class XDebugTarget extends XDebugElement implements IDebugTarget, IDebugE
                                                }
                                        }
                                }
+                               else {
+                                   XDebugCorePlugin.log (IStatus.WARNING, "path do not match: local path: " + local.toString () + "   breakpoint file: " + path.toString ());
+                               }
                        }
                }
        }