sonos

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit ea033c3ea31772f5e5b0f24902c99d0890e86ceb
parent 7a26ca4caeb831ecec30dac29e5d6c21d879a811
Author: Brian Swetland <swetland@frotz.net>
Date:   Sun,  7 Aug 2011 07:34:43 -0700

SoapRPC: dump xml parse error if it occurs

Diffstat:
Mnet/frotz/sonos/SoapRPC.java | 2++
1 file changed, 2 insertions(+), 0 deletions(-)

diff --git a/net/frotz/sonos/SoapRPC.java b/net/frotz/sonos/SoapRPC.java @@ -185,6 +185,8 @@ class SoapRPC { xml.open("s:Body"); return xml; } catch (XML.Oops x) { + System.err.println("OOPS " + x); + x.printStackTrace(); return null; } }