From 730c79ca08a120d1e38c9cf700fb3f299b9503a5 Mon Sep 17 00:00:00 2001
From: Anthony Minessale <anthm@freeswitch.org>
Date: Tue, 29 Sep 2015 14:48:46 -0500
Subject: [PATCH] FS-7989 add more debugging data

---
 support-d/utils/fixbug.pl | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/support-d/utils/fixbug.pl b/support-d/utils/fixbug.pl
index 027d954bdb..573ef06ee2 100755
--- a/support-d/utils/fixbug.pl
+++ b/support-d/utils/fixbug.pl
@@ -34,6 +34,10 @@ if ($prog =~ /wget/) {
 }
 
 my $xml = `$cmd $url 2>/dev/null`;
+if ($opts{debug}) {
+    print "URL $url\n";
+    print $xml;
+}
 
 my $xs= new XML::Simple;
 my $r = $xs->XMLin($xml);