From 39abefdb3df09a51a0f4a847d4f94e23c95ec9cd Mon Sep 17 00:00:00 2001
From: Robert Sesek <rsesek@bluestatic.org>
Date: Fri, 3 Apr 2009 23:07:58 -0400
Subject: [PATCH] NSLog() when Xdebug returns us an error

* Source/GDBpConnection.m:
(processData:)
---
 Source/GDBpConnection.m | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Source/GDBpConnection.m b/Source/GDBpConnection.m
index f31df54..0522261 100644
--- a/Source/GDBpConnection.m
+++ b/Source/GDBpConnection.m
@@ -301,6 +301,7 @@ NSString *kErrorOccurredNotif = @"GDBpConnection_ErrorOccured_Notification";
 	NSArray *error = [[doc rootElement] elementsForName:@"error"];
 	if ([error count] > 0)
 	{
+		NSLog(@"Xdebug error: %@", error);
 		[self errorEncountered:[[[[error objectAtIndex:0] children] objectAtIndex:0] stringValue]];
 		return nil;
 	}
-- 
2.43.5